body {
    background-color: #000000;
    color: #e2e2e2;
    -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glow-hover:hover {
    box-shadow: 0 0 20px rgba(208, 240, 92, 0.3);
}

.input-focus-effect:focus {
    box-shadow: 0 0 0 1px #d0f05c, 0 0 12px rgba(208, 240, 92, 0.2);
    border-color: #d0f05c;
    outline: none;
}

.industrial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(208, 240, 92, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.verification-badge {
    background: #1A1A1A;
    border: 1px solid #2E2E2E;
    transition: all 0.3s ease;
}

.verification-badge.verified {
    border-color: #d0f05c;
}

.shimmer {
    background: linear-gradient(90deg, #1A1A1A 25%, #252525 50%, #1A1A1A 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

input[type="checkbox"].consent-check {
    appearance: none;
    background-color: #1A1A1A;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid #2E2E2E;
    border-radius: 0.25em;
    display: grid;
    place-content: center;
    cursor: pointer;
}

input[type="checkbox"].consent-check::before {
    content: "";
    width: 0.85em;
    height: 0.85em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #D1F15D;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type="checkbox"].consent-check:checked::before {
    transform: scale(1);
}

input[type="checkbox"].consent-check:checked {
    border-color: #D1F15D;
}

.btn-primary {
    background: #D1F15D;
    color: #000000;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.btn-primary:hover:not(:disabled) {
    background: #B8D94B;
}

.btn-primary:disabled,
.btn-disabled {
    background: #454836;
    color: #c6c9b1;
    cursor: not-allowed;
    border-radius: 9999px;
    font-weight: 700;
}

.btn-secondary {
    border: 1px solid #2E2E2E;
    color: #ffffff;
    background: transparent;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #353535;
}

.card {
    background: #1A1A1A;
    border: 1px solid #2E2E2E;
    border-radius: 1rem;
}

.flash-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
}

.flash-success {
    background: rgba(208, 240, 92, 0.15);
    color: #d0f05c;
    border-bottom: 1px solid #454836;
}

.flash-error {
    background: rgba(147, 0, 10, 0.4);
    color: #ffdad6;
    border-bottom: 1px solid #93000a;
}

.flash-info {
    background: rgba(53, 53, 53, 0.8);
    color: #e2e2e2;
    border-bottom: 1px solid #454836;
}

.badge-pending { background: #353535; color: #c6c9b1; }
.badge-processing { background: rgba(208, 240, 92, 0.2); color: #d0f05c; }
.badge-completed { background: rgba(172, 248, 71, 0.2); color: #acf847; }
.badge-failed { background: rgba(147, 0, 10, 0.5); color: #ffdad6; }

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-active .accordion-content {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.accordion-active .arrow-icon {
    transform: rotate(180deg);
}

.step-active {
    background: #d0f05c;
    color: #171e00;
}

.step-inactive {
    background: #1f1f1f;
    border: 2px solid #454836;
    color: #c6c9b1;
}

.step-done {
    background: rgba(208, 240, 92, 0.3);
    color: #d0f05c;
    border: 2px solid #d0f05c;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    transform: translateY(-50%);
    z-index: 0;
}

.asset-option input:checked + label {
    border-color: #d0f05c;
    background: rgba(208, 240, 92, 0.08);
}

.reveal-item {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s ease;
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-hero {
    position: relative;
    overflow: hidden;
}

.landing-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(208, 240, 92, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(208, 240, 92, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(208, 240, 92, 0.35);
    background: rgba(208, 240, 92, 0.08);
    color: #d0f05c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-visual {
    position: relative;
    border-radius: 1.5rem;
    border: 1px solid #2e2e2e;
    background: #0e0e0e;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.landing-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(208, 240, 92, 0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.landing-visual img,
.landing-visual svg {
    display: block;
    width: 100%;
    height: auto;
}

.landing-float-card {
    position: absolute;
    z-index: 2;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #2e2e2e;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.landing-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 9999px;
    border: 1px solid #2e2e2e;
    background: #1a1a1a;
    color: #c6c9b1;
    font-size: 13px;
    font-weight: 600;
}

.landing-stat-pill .material-symbols-outlined {
    font-size: 16px;
    color: #d0f05c;
}

.landing-feature-card {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 1rem;
    padding: 24px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.landing-feature-card:hover {
    border-color: rgba(208, 240, 92, 0.45);
    transform: translateY(-2px);
}

.landing-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(208, 240, 92, 0.12);
    color: #d0f05c;
    margin-bottom: 16px;
}

.landing-step-card {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 1rem;
    padding: 24px;
}

.landing-step-number {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.landing-step-number.active {
    background: #d0f05c;
    color: #171e00;
}

.landing-step-number.inactive {
    border: 2px solid #454836;
    color: #c6c9b1;
}

.landing-asset-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 9999px;
    border: 1px solid #2e2e2e;
    background: #141414;
    color: #e2e2e2;
    font-weight: 600;
    font-size: 14px;
}

.landing-asset-chip .material-symbols-outlined {
    color: #d0f05c;
    font-size: 20px;
}
