:root {
    --bg: #0a0a0b;
    --surface: #141416;
    --surface-2: #1c1c1f;
    --border: #2a2a2e;
    --text: #f0f0f2;
    --text-muted: #8a8a95;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.15);
    --green: #22c55e;
    --green-glow: rgba(34, 197, 94, 0.12);
    --orange: #f97316;
    --orange-glow: rgba(249, 115, 22, 0.12);
    --purple: #8b5cf6;
    --purple-glow: rgba(139, 92, 246, 0.12);
    --radius: 14px;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    padding: 0 20px;
    padding-bottom: 40px;
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 28px;
}

.avatar-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    padding: 3px;
    margin-bottom: 16px;
    animation: pulse-ring 3s ease-in-out infinite;
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg);
}

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(59, 130, 246, 0); }
}

.name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.tagline {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 12px;
}

.tagline strong {
    color: var(--text);
    font-weight: 600;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--green-glow);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Section Label */
.section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 4px;
}

/* Actions */
.actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

/* Action Button */
.action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.action-btn:hover {
    background: var(--surface-2);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.action-btn:active {
    transform: translateY(0);
}

/* Action Button Outlined */
.action-btn--outlined {
    background: transparent;
    border: 1px dashed var(--border);
    color: var(--text-muted);
    margin-bottom: 28px;
}

.action-btn--outlined:hover {
    border-style: solid;
    border-color: var(--accent);
    color: var(--text);
}

/* Action Icon */
.action-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-primary { background: var(--accent-glow); }
.icon-green { background: var(--green-glow); }
.icon-orange { background: var(--orange-glow); }
.icon-purple { background: var(--purple-glow); }
.icon-white { background: rgba(255, 255, 255, 0.15); }

/* Action Text */
.action-text {
    flex: 1;
    min-width: 0;
}

.action-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.action-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Action Arrow */
.action-arrow {
    color: var(--text-muted);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.action-btn:hover .action-arrow {
    transform: translateX(3px);
    color: var(--accent);
}

/* Primary CTA */
.cta-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.2);
}

.cta-primary:hover {
    box-shadow: 0 6px 32px rgba(59, 130, 246, 0.35);
    border-color: rgba(59, 130, 246, 0.5);
}

.cta-primary .action-title {
    color: white;
}

.cta-primary .action-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.cta-primary .action-arrow {
    color: rgba(255, 255, 255, 0.7);
}

.cta-primary:hover .action-arrow {
    color: white;
}

/* Inventory */
.inventory-section {
    margin-bottom: 28px;
}

.inventory-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.inventory-scroll::-webkit-scrollbar {
    display: none;
}

.inv-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s;
}

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

.inv-img {
    width: 100%;
    height: 100px;
}

.inv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inv-img--fallback {
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.inv-info {
    padding: 10px;
}

.inv-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.inv-price {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
}

.trust-item span {
    font-size: 14px;
}

/* Form */
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 13px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    -webkit-appearance: none;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--accent);
}

.form-select {
    margin-bottom: 10px;
    cursor: pointer;
}

.form-select option {
    background: var(--surface-2);
    color: var(--text);
}

.form-textarea {
    min-height: 70px;
    resize: vertical;
    margin-bottom: 12px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.form-submit:active {
    transform: scale(0.98);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-glow);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--green);
    margin: 0 auto 14px;
}

.success-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.success-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Socials */
.socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--accent);
    background: var(--surface-2);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.footer-brand {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.15s; }
.delay-3 { animation-delay: 0.2s; }
.delay-4 { animation-delay: 0.25s; }
.delay-5 { animation-delay: 0.3s; }
.delay-6 { animation-delay: 0.35s; }
.delay-7 { animation-delay: 0.4s; }
