/* ==========================================================
   bcrd.cz — Landing Page
   Aesthetic: Luxury Editorial — dark, warm, cinematic
   Fonts: Playfair Display (headings) + DM Sans (body)
   ========================================================== */

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

:root {
    --bg: #faf9f7;
    --bg-dark: #0c0a09;
    --bg-card: #ffffff;
    --surface: #f5f3f0;
    --border: #e8e4dd;
    --text: #1c1917;
    --text-light: #78716c;
    --text-on-dark: #d6d3d1;
    --gold: #b8986a;
    --gold-light: #d4b896;
    --gold-dark: #96785a;
    --gold-glow: rgba(184, 152, 106, 0.25);
    --charcoal: #292524;
    --success: #16a34a;
    --error: #dc2626;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0c0a09;
        --bg-dark: #000000;
        --bg-card: #1c1917;
        --surface: #1c1917;
        --border: #3a3531;
        --text: #e7e5e4;
        --text-light: #a8a29e;
    }
}

html {
    scroll-behavior: smooth;
}

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

/* ========== NAV ========== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav--scrolled {
    background: rgba(12, 10, 9, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 24px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-brand span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--gold) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }
}

/* ========== HERO ========== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 10, 9, 0.45) 0%,
        rgba(12, 10, 9, 0.6) 50%,
        rgba(12, 10, 9, 0.8) 100%
    );
    z-index: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: 2;
}

.hero-glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation: glowFloat 12s ease-in-out infinite;
}

.hero-glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6d5a3a 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: glowFloat 10s ease-in-out infinite reverse;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: 3;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 152, 106, 0.12);
    border: 1px solid rgba(184, 152, 106, 0.25);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-on-dark);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-proof strong {
    color: var(--gold-light);
}

.hero-proof-avatars {
    display: flex;
    gap: 0;
}

.avatar-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
}

.avatar-dot:first-child {
    margin-left: 0;
}

/* Card mockup */
.hero-mockup {
    position: absolute;
    right: -40px;
    bottom: 80px;
    z-index: 1;
    opacity: 0.35;
    transform: rotate(6deg);
    pointer-events: none;
}

.mockup-card {
    width: 280px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(4px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.mockup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.15);
}

.mockup-name {
    flex: 1;
}

.mockup-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 6px;
}

.mockup-line--wide { width: 120px; }
.mockup-line--narrow { width: 80px; }
.mockup-line--med { width: 100px; }
.mockup-line--long { width: 140px; }

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mockup-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.3;
    flex-shrink: 0;
}

.mockup-btn {
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0.3;
}

.mockup-url {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.mockup-url span {
    color: var(--gold);
    opacity: 0.5;
}

@media (max-width: 900px) {
    .hero-mockup { display: none; }
}

/* ========== BUTTONS ========== */

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
    box-shadow: 0 4px 16px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow);
}

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

.btn-gold:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-gold--full {
    width: 100%;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

/* ========== PROOF BAR ========== */

.proof-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}

.proof-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
}

.proof-item {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
    min-width: 160px;
}

.proof-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.proof-item span {
    font-size: 13px;
    color: var(--text-light);
}

.proof-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .proof-bar-inner {
        flex-wrap: wrap;
    }
    .proof-item {
        flex: 0 0 50%;
        padding: 18px 12px;
    }
    .proof-divider {
        display: none;
    }
}

/* ========== SECTIONS ========== */

.section {
    padding: 100px 24px;
}

.section--dark {
    background: var(--bg-dark);
    color: #fff;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-tag--gold {
    color: var(--gold-light);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-desc {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== FEATURES ========== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(28, 25, 23, 0.1);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184,152,106,0.1), rgba(184,152,106,0.05));
    border: 1px solid rgba(184,152,106,0.15);
    border-radius: 12px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========== HOW IT WORKS ========== */

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 20px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-on-dark);
    opacity: 0.7;
    line-height: 1.6;
}

.step-arrow {
    flex-shrink: 0;
    width: 40px;
    margin-top: 24px;
    color: rgba(255,255,255,0.15);
}

.step-arrow svg {
    width: 100%;
    height: auto;
}

@media (max-width: 700px) {
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}


/* ========== NFC ========== */

.nfc-how {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.nfc-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nfc-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.nfc-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184,152,106,0.15), rgba(184,152,106,0.05));
    border: 1px solid rgba(184,152,106,0.2);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--gold);
}

.nfc-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.nfc-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.nfc-step a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.nfc-step a:hover {
    color: var(--gold-dark);
}

.nfc-buy {
    position: sticky;
    top: 100px;
}

.nfc-buy-inner {
    text-align: center;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 8px 32px -8px rgba(184,152,106,0.15);
}

.nfc-buy-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(184,152,106,0.12), rgba(184,152,106,0.04));
    border: 1px solid rgba(184,152,106,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.nfc-buy h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.nfc-buy p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.nfc-buy-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1;
}

.nfc-buy-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

.nfc-buy-note {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nfc-how {
        grid-template-columns: 1fr;
    }
    .nfc-buy {
        position: static;
    }
}

/* ========== REGISTRATION ========== */

.section--register {
    padding-bottom: 120px;
}

.register-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.register-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.register-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.register-text p {
    color: var(--text-on-dark);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.register-perks {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.register-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-on-dark);
}

.register-perks svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
}

.register-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(8px);
}

@media (max-width: 800px) {
    .register-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .register-text {
        text-align: center;
    }
    .register-perks {
        justify-items: center;
    }
}

/* ========== FORMS ========== */

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.7);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-control.is-error {
    border-color: var(--error);
}

.form-error-text {
    font-size: 13px;
    color: #fca5a5;
    margin-top: 6px;
}

.form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    text-align: center;
}

.slug-input-wrapper {
    display: flex;
    align-items: stretch;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.slug-input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.slug-input-wrapper.is-error {
    border-color: var(--error);
}

.slug-input-wrapper.is-checking::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: slug-spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
    flex-shrink: 0;
    align-self: center;
}
.slug-input-wrapper.is-available {
    border-color: #16a34a;
}
.slug-input-wrapper.is-taken {
    border-color: var(--error);
}

@keyframes slug-spin {
    to { transform: rotate(360deg); }
}

.slug-prefix {
    padding: 14px 2px 14px 16px;
    color: rgba(255,255,255,0.4);
    font-size: 15px;
    font-family: var(--font-body);
    white-space: nowrap;
    user-select: none;
    display: flex;
    align-items: center;
}

.slug-input {
    flex: 1;
    padding: 14px 16px 14px 0;
    font-size: 15px;
    font-family: var(--font-body);
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
    min-width: 0;
}

.slug-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.slug-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 6px;
    text-align: left;
}

.form-extra {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ========== ALERTS ========== */

.alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.alert-success {
    background: rgba(22, 163, 74, 0.12);
    color: #86efac;
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.alert-error {
    background: rgba(220, 38, 38, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.alert-link {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.alert-note {
    display: block;
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.8;
}

/* Verify/recover pages — light background alerts */
.verify-page .alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.verify-page .alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========== FOOTER ========== */

.home-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 24px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
}

.footer-brand span {
    color: var(--gold);
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
}

/* ========== VERIFY / RECOVER PAGES ========== */

.verify-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg);
}

.verify-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 36px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(28, 25, 23, 0.1);
}

.verify-brand {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 32px;
    color: var(--text);
}

.verify-brand span { color: var(--gold); }

.verify-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.verify-text {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.verify-slug {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.verify-slug a { color: inherit; text-decoration: none; }
.verify-slug a:hover { text-decoration: underline; }

.verify-success-icon {
    color: var(--success);
    margin-bottom: 16px;
}

.verify-admin-link {
    background: #fef9ee;
    border: 1px solid #fde68a;
    border-radius: 16px;
    padding: 24px 20px;
    margin: 24px 0 16px;
}

@media (prefers-color-scheme: dark) {
    .verify-admin-link {
        background: #451a03;
        border-color: #92400e;
    }
}

.verify-warning {
    color: #92400e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

@media (prefers-color-scheme: dark) {
    .verify-warning { color: #fbbf24; }
}

.verify-link-copy {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.verify-link-copy .form-control {
    background: rgba(255,255,255,0.8);
    color: var(--text);
    border-color: var(--border);
    font-size: 13px;
    padding: 10px 12px;
}

.verify-note {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 16px;
}

.verify-note a { color: var(--gold-dark); text-decoration: none; }
.verify-note a:hover { text-decoration: underline; }

/* ========== VERIFY SUCCESS ONBOARDING ========== */

.verify-onboarding {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.verify-onboarding-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.verify-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verify-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.verify-step-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: #fef9ee;
    border: 1px solid #fde68a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #96785a;
}

@media (prefers-color-scheme: dark) {
    .verify-step-icon {
        background: #292524;
        border-color: #44403c;
        color: #d4b896;
    }
}

.verify-step-icon svg {
    width: 18px;
    height: 18px;
}

.verify-step strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.verify-step p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

.verify-card-preview {
    margin-top: 20px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
}

.verify-preview-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.verify-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    margin-bottom: 6px;
}

.verify-preview-link:hover { text-decoration: underline; }

.verify-preview-slug {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    word-break: break-all;
}

.verify-qr-preview {
    margin-top: 16px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.verify-qr-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.verify-qr-img {
    display: block;
    width: 140px;
    height: 140px;
    border-radius: 8px;
    margin: 0 auto 10px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 4px;
}

.verify-qr-hint {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.4;
}

.verify-qr-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.verify-qr-download:hover {
    color: var(--gold);
    text-decoration: underline;
}

.verify-qr-download svg {
    flex-shrink: 0;
}

.verify-page .form-control {
    background: var(--bg);
    color: var(--text);
    border-color: var(--border);
}

.verify-page .form-control:focus { border-color: var(--gold); }
.verify-page .form-label { color: var(--text); }

.verify-page .btn-primary,
.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    text-decoration: none;
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--gold-glow); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-secondary:hover { background: var(--border); }

/* ========== ANIMATIONS ========== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children in grids */
.features-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.features-grid .reveal:nth-child(7) { transition-delay: 0.48s; }

.nfc-steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.nfc-steps .reveal:nth-child(3) { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ========== STICKY CTA BAR ========== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0c0a09;
    border-top: 1px solid rgba(184, 152, 106, 0.2);
    padding: 16px 24px;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta a {
    display: inline-block;
    background: linear-gradient(135deg, #b8986a, #9a7d5a);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

/* ========== FORM BUTTON PULSE ========== */

.reg-form .btn-primary,
.section--register .btn-gold--full {
    animation: subtlePulse 2s ease-in-out infinite;
}


@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 152, 106, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(184, 152, 106, 0); }
}

/* ========== TRUST SIGNALS ========== */

.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.6;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 64px;
        min-height: auto;
    }

    .section {
        padding: 64px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .verify-card {
        padding: 32px 20px;
    }

    .verify-link-copy {
        flex-direction: column;
    }

    .register-form-card {
        padding: 28px 20px;
    }

    .register-perks {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
