/* Clarity Signals — Brand CSS
   Custom properties + component styles (no Tailwind build step)
   Brand: Carbon Black #0B0F14, Electric Cyan #00E5FF, Plasma Violet #7A5CFF
*/

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --carbon: #0B0F14;
    --graphite: #1A1F26;
    --cyan: #00E5FF;
    --violet: #7A5CFF;
    --soft-white: #E6F1F5;
    --white-10: rgba(255,255,255,0.1);
    --white-20: rgba(255,255,255,0.2);
    --white-30: rgba(255,255,255,0.3);
    --white-40: rgba(255,255,255,0.4);
    --white-50: rgba(255,255,255,0.5);
    --white-60: rgba(255,255,255,0.6);
    --white-70: rgba(255,255,255,0.7);
    --white-80: rgba(255,255,255,0.8);
    --white-90: rgba(255,255,255,0.9);
}

html { scroll-behavior: smooth; }

body {
    background: var(--carbon);
    color: var(--soft-white);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', 'Inter', system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Layout ===== */
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 28rem; margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex { display: flex; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.hidden { display: none; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.whitespace-nowrap { white-space: nowrap; }
.block { display: block; }
.w-full { width: 100%; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.h-14 { height: 3.5rem; }
.w-14 { width: 3.5rem; }
.h-16 { height: 4rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.w-32 { width: 8rem; }
.h-40 { height: 10rem; }
.w-40 { width: 10rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.z-50 { z-index: 50; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.-top-3 { top: -0.75rem; }
.-top-40 { top: -10rem; }
.-bottom-48 { bottom: -12rem; }
.-inset-6 { top: -1.5rem; right: -1.5rem; bottom: -1.5rem; left: -1.5rem; }
.-inset-10 { top: -2.5rem; right: -2.5rem; bottom: -2.5rem; left: -2.5rem; }
.left-6 { left: 1.5rem; }
.-left-12 { left: -3rem; }
.right-6 { right: 1.5rem; }

/* Grid layouts */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .sm\:flex-row { flex-direction: row; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .sm\:flex-col { flex-direction: column; }
}
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:text-5xl { font-size: 3rem; }
    .order-1 { order: 1; }
    .order-2 { order: 2; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Typography ===== */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-heading { font-family: 'Rajdhani', 'Inter', system-ui, sans-serif; }
.font-mono { font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.75; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ===== Colors ===== */
.text-white { color: #fff; }
.text-white\/10 { color: var(--white-10); }
.text-white\/20 { color: var(--white-20); }
.text-white\/30 { color: var(--white-30); }
.text-white\/40 { color: var(--white-40); }
.text-white\/50 { color: var(--white-50); }
.text-white\/60 { color: var(--white-60); }
.text-white\/70 { color: var(--white-70); }
.text-white\/80 { color: var(--white-80); }
.text-white\/90 { color: var(--white-90); }
.text-cyan { color: var(--cyan); }
.text-violet { color: var(--violet); }
.text-emerald-400 { color: #34d399; }
.text-red-400 { color: #f87171; }
.text-carbon { color: var(--carbon); }

.bg-carbon { background-color: var(--carbon); }
.bg-graphite { background-color: var(--graphite); }
.bg-graphite\/30 { background-color: rgba(26,31,38,0.3); }
.bg-graphite\/50 { background-color: rgba(26,31,38,0.5); }
.bg-cyan { background-color: var(--cyan); }
.bg-cyan\/5 { background-color: rgba(0,229,255,0.05); }
.bg-cyan\/8 { background-color: rgba(0,229,255,0.08); }
.bg-cyan\/10 { background-color: rgba(0,229,255,0.1); }
.bg-cyan\/15 { background-color: rgba(0,229,255,0.15); }
.bg-cyan\/20 { background-color: rgba(0,229,255,0.2); }
.bg-violet { background-color: var(--violet); }
.bg-violet\/5 { background-color: rgba(122,92,255,0.05); }
.bg-violet\/8 { background-color: rgba(122,92,255,0.08); }
.bg-violet\/10 { background-color: rgba(122,92,255,0.1); }
.bg-violet\/20 { background-color: rgba(122,92,255,0.2); }
.bg-white\/5 { background-color: var(--white-5); }
.bg-white\/10 { background-color: var(--white-10); }
.bg-white\/15 { background-color: var(--white-15); }
.bg-white\/20 { background-color: var(--white-20); }
.bg-white\/\[0\.02\] { background-color: rgba(255,255,255,0.02); }
.bg-white\/\[0\.03\] { background-color: rgba(255,255,255,0.03); }
.bg-white\/\[0\.05\] { background-color: rgba(255,255,255,0.05); }
.bg-emerald-500\/10 { background-color: rgba(52,211,153,0.1); }
.bg-red-500\/10 { background-color: rgba(248,113,113,0.1); }
.bg-carbon\/60 { background-color: rgba(11,15,20,0.6); }
.bg-carbon\/50 { background-color: rgba(11,15,20,0.5); }
.bg-carbon\/95 { background-color: rgba(11,15,20,0.95); }

.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/15 { border-color: rgba(255,255,255,0.15); }
.border-cyan\/10 { border-color: rgba(0,229,255,0.1); }
.border-cyan\/20 { border-color: rgba(0,229,255,0.2); }
.border-cyan\/30 { border-color: rgba(0,229,255,0.3); }
.border-violet\/20 { border-color: rgba(122,92,255,0.2); }
.border-emerald-500\/10 { border-color: rgba(52,211,153,0.1); }
.border-emerald-500\/20 { border-color: rgba(52,211,153,0.2); }
.border-red-500\/20 { border-color: rgba(248,113,113,0.2); }

.border { border: 1px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-l-2 { border-left: 2px solid; }

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--cyan);
    color: var(--carbon);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    transition: all 0.2s;
}
.btn-primary:hover {
    background: rgba(0,229,255,0.9);
    box-shadow: 0 0 20px rgba(0,229,255,0.2);
}
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid var(--white-15);
    background: rgba(255,255,255,0.05);
    color: var(--white-80);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
}
.btn-outline:hover {
    border-color: rgba(0,229,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white-60);
    background: transparent;
    border: none;
    transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===== Badges ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(0,229,255,0.2);
    background: rgba(0,229,255,0.1);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* ===== Nav ===== */
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white-60);
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active { color: var(--cyan); }
.nav-link-mobile {
    display: block;
    padding: 0.5rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white-60);
    transition: color 0.2s;
}
.nav-link-mobile:hover { color: #fff; }

/* ===== Cards ===== */
.feature-card {
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(0,229,255,0.1); }

.stat-card {
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.03);
    padding: 1.25rem;
    text-align: center;
}

.member-card {
    display: block;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.03);
    padding: 1.25rem;
    transition: all 0.2s;
}
.member-card:hover {
    border-color: rgba(0,229,255,0.2);
    background: rgba(255,255,255,0.05);
}

.post-card {
    display: block;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    padding: 1rem;
    transition: all 0.2s;
}
.post-card:hover {
    border-color: rgba(0,229,255,0.2);
    background: rgba(255,255,255,0.05);
}

/* ===== Inputs ===== */
input[type="email"],
input[type="password"],
input[type="text"],
input[type="number"],
input[type="search"],
input[type="url"],
select,
textarea {
    background: rgba(11,15,20,0.5);
    color: var(--soft-white);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
}
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="text"]::placeholder,
input[type="number"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(0,229,255,0.4);
    box-shadow: 0 0 0 1px rgba(0,229,255,0.2);
}

.input {
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--carbon);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--soft-white);
    transition: border-color 0.2s;
}
.input::placeholder { color: rgba(255,255,255,0.2); }
.input:focus {
    outline: none;
    border-color: rgba(0,229,255,0.4);
    box-shadow: 0 0 0 1px rgba(0,229,255,0.2);
}

.filter-label {
    display: block;
    font-size: 0.7rem;
    color: var(--white-30);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.filter-input {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--carbon);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--soft-white);
    transition: border-color 0.2s;
}
.filter-input::placeholder { color: rgba(255,255,255,0.2); }
.filter-input:focus {
    outline: none;
    border-color: rgba(0,229,255,0.4);
}

/* ===== Table ===== */
table { width: 100%; border-collapse: collapse; }
.table-th {
    padding: 0.75rem 0.75rem;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white-40);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.table-td {
    padding: 0.75rem 0.75rem;
    color: var(--white-70);
    white-space: nowrap;
    font-size: 0.875rem;
}

/* ===== Pagination ===== */
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    min-width: 2rem;
    padding: 0 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--white-50);
    transition: all 0.2s;
}
.pagination-btn:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.pagination-btn.active {
    background: rgba(0,229,255,0.1);
    color: var(--cyan);
    border: 1px solid rgba(0,229,255,0.2);
}

/* ===== Transaction badge ===== */
.tx-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 0.375rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ===== GEX view buttons ===== */
.gex-view-btn {
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white-50);
    background: transparent;
    border: none;
    transition: all 0.2s;
}
.gex-view-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }
.gex-view-btn.active {
    background: rgba(0,229,255,0.1);
    color: var(--cyan);
    border: 1px solid rgba(0,229,255,0.2);
}

/* ===== Trust pill (hero) ===== */
.trust-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--white-50);
}

/* ===== Mini metric (hero card) ===== */
.mini-metric {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

/* ===== Hero grid background ===== */
.hero-grid {
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

/* ===== Blur effects ===== */
.blur { filter: blur(8px); }
.blur-sm { filter: blur(4px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(60px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ===== Shadow ===== */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }

/* ===== Rounded ===== */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* ===== Spacing helpers ===== */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ===== Post prose ===== */
.prose-post { line-height: 1.8; }
.prose-post p { margin-bottom: 1rem; }
.prose-post h2, .prose-post h3 {
    font-family: 'Rajdhani', 'Inter', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.prose-post ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-post ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-post li { margin-bottom: 0.25rem; }
.prose-post strong { color: var(--white-90); }
.prose-post table { width: 100%; margin: 1rem 0; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; overflow: hidden; }
.prose-post th { background: rgba(255,255,255,0.05); padding: 0.5rem 0.75rem; text-align: left; font-size: 0.7rem; font-weight: 600; color: var(--white-50); text-transform: uppercase; }
.prose-post td { padding: 0.5rem 0.75rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--white-70); font-size: 0.875rem; }
.prose-post a { color: var(--cyan); }
.prose-post a:hover { text-decoration: underline; }
.prose-post code { background: rgba(255,255,255,0.05); padding: 0.125rem 0.375rem; border-radius: 0.25rem; font-size: 0.875rem; font-family: 'SF Mono', 'Fira Code', monospace; }
.prose-post blockquote { border-left: 2px solid rgba(0,229,255,0.3); padding-left: 1rem; margin: 1rem 0; color: var(--white-60); font-style: italic; }

/* ===== Custom ===== */
.min-h-screen { min-height: 100vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.max-w-\[160px\] { max-width: 160px; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }

/* SVG sizing */
svg { vertical-align: middle; }
.h-4 { height: 1rem; } .w-4 { width: 1rem; }
.h-5 { height: 1.25rem; } .w-5 { width: 1.25rem; }
.h-6 { height: 1.5rem; } .w-6 { width: 1.5rem; }
.h-1 { height: 0.25rem; } .w-1 { width: 0.25rem; }

/* Gradient utilities */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-transparent { --tw-gradient-stops: transparent, var(--tw-gradient-via), var(--tw-gradient-to); }
.from-white\/5 { --tw-gradient-stops: rgba(255,255,255,0.05), var(--tw-gradient-via), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.to-carbon { --tw-gradient-to: var(--carbon); }
.via-carbon\/30 { --tw-gradient-via: rgba(11,15,20,0.3); }

/* Transform */
.-translate-x-1\/2 { transform: translateX(-50%); }
.rotate-45 { transform: rotate(45deg); }
.scale-\[0\.98\] { transform: scale(0.98); }

/* Opacity */
.opacity-\[0\.06\] { opacity: 0.06; }
.opacity-80 { opacity: 0.8; }

/* Misc */
.outline-none { outline: none; }
.cursor-pointer { cursor: pointer; }
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-all { transition: all 0.2s; }
.transition-transform { transition: transform 0.2s; }
