/* ============================================
   PROPFIRM SUPPLY
   Charcoal + Silver Theme — Unicorn.studio style
   ============================================ */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-elevated: #1c1c1c;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent: #c8c8c8;
    --accent-glow: rgba(200, 200, 200, 0.15);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Vertical side lines — page frame */
.page-frame {
    position: relative;
    max-width: 1380px;
    margin: 0 auto;
}

.page-frame::before,
.page-frame::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    z-index: 9999;
    pointer-events: none;
    background: var(--border);
}

.page-frame::before {
    left: 0;
}

.page-frame::after {
    right: 0;
}

@keyframes borderFlow {
    0% { background-position: 0 -100%; }
    100% { background-position: 0 100%; }
}

/* ============================================
   NAVIGATION — Unicorn style
   ============================================ */

.navbar {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.9rem 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 450;
    transition: color var(--transition);
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-btn-outline {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    transition: color var(--transition);
}

.nav-btn-outline:hover {
    color: var(--text-primary);
}

.nav-btn-solid {
    background: linear-gradient(180deg, #d4d4d4 0%, #a8a8a8 50%, #787878 100%);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    transition: opacity var(--transition);
}

.nav-btn-solid:hover {
    opacity: 0.85;
}

/* ============================================
   HERO — Full viewport, dramatic glow
   ============================================ */

.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, var(--bg-primary) 70%),
        linear-gradient(to bottom, transparent 0%, var(--bg-primary) 95%);
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(180, 180, 180, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1100px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 50%, #707070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(180deg, #d4d4d4 0%, #a8a8a8 50%, #787878 100%);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
    overflow: hidden;
}

.trust-marquee {
    position: relative;
}

.trust-marquee::before,
.trust-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.trust-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.trust-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.trust-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

.trust-track img {
    height: 22px;
    width: auto;
    flex-shrink: 0;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all var(--transition);
}

.trust-track img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ============================================
   PRODUCTS — Card grid
   ============================================ */

.products {
    padding: 4rem 2rem 8rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 50%, #707070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.coming-soon-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 100%;
    text-align: center;
}
.coming-soon-text {
    font-size: clamp(1.7rem, 3.6vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 50%, #707070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.card-stroke {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: conic-gradient(
        from var(--stroke-angle, 0deg),
        transparent 0%,
        rgba(192, 192, 192, 0.6) 10%,
        rgba(255, 255, 255, 0.8) 15%,
        rgba(192, 192, 192, 0.6) 20%,
        transparent 30%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: strokeRotate 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@property --stroke-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes strokeRotate {
    to { --stroke-angle: 360deg; }
}

.card-inner {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    color: var(--accent);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid var(--border);
    letter-spacing: 0.02em;
}

.card-body {
    padding: 1.25rem 1.4rem;
}

.card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.card-meta {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}
.card-meta .meta-link {
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(192, 192, 192, 0.4);
    transition: all var(--transition);
}
.card-meta .meta-link:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.85);
}

.card-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.18);
    font-size: 0.72rem;
    font-weight: 500;
    color: #4ade80;
    letter-spacing: 0.01em;
}
.card-stock .stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: stock-pulse 2.2s ease-in-out infinite;
}
.card-stock.low {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.22);
    color: #fbbf24;
}
.card-stock.low .stock-dot {
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}
@keyframes stock-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(0.85); }
}
.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
    text-decoration: none;
}

.card-arrow:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

/* Buy Now button */
.buy-btn {
    background: linear-gradient(180deg, #d4d4d4 0%, #a8a8a8 50%, #787878 100%);
    color: var(--bg-primary);
    border: none;
    padding: 0.55rem 1.2rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.buy-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(192, 192, 192, 0.15);
}

/* ============================================
   PURCHASE MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: 92vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #1a1a1a 0%, #131313 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 1.75rem;
    padding-right: 2rem;
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.55rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all var(--transition);
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.qty-control {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    width: fit-content;
}

.qty-btn {
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color var(--transition);
    font-family: inherit;
}

.qty-btn:hover {
    color: var(--accent);
}

.qty-control input {
    width: 50px;
    height: 38px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.payment-option {
    cursor: pointer;
    display: block;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all var(--transition);
}

.payment-option input[type="radio"]:checked + .payment-card {
    background: rgba(192, 192, 192, 0.06);
    border-color: rgba(192, 192, 192, 0.3);
}

.payment-option:hover .payment-card {
    background: rgba(255, 255, 255, 0.05);
}

.payment-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212,212,212,0.15) 0%, rgba(120,120,120,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.payment-icon-img {
    background: transparent;
    border: none;
    overflow: hidden;
    padding: 0;
}
.payment-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.payment-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}

.payment-info span {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.modal-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0.25rem 0 0.5rem;
}

.modal-summary span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.modal-summary strong {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.modal-submit {
    width: 100%;
    padding: 0.95rem;
    font-size: 0.92rem;
    text-align: center;
}

/* ============================================
   MODAL STEP SYSTEM
   ============================================ */

.modal-step.hidden { display: none; }
.hidden { display: none !important; }

.modal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.25rem;
    transition: color var(--transition);
}
.modal-back:hover { color: var(--text-primary); }

/* ============================================
   PAYMENT PANES
   ============================================ */

.pay-pane { display: flex; flex-direction: column; gap: 1.1rem; }
.pay-pane.hidden { display: none; }

.pay-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    text-align: center;
}
.pay-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.pay-amount strong {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.pay-fiat {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* QR Code */
.qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
}
.qr-code img {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 8px;
}
.qr-code {
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
}
.qr-network {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* Address row */
.pay-address {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.address-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
}
.address-row code {
    flex: 1;
    font-size: 0.75rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: monospace;
}
.copy-btn {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.copy-btn:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

.pay-warning {
    font-size: 0.73rem;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    line-height: 1.5;
}

/* Wallet Connect Pane */
.wallet-status {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
}
.wallet-status-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); flex-shrink: 0;
}
.wallet-status-text strong { display: block; font-size: 0.88rem; color: var(--text-primary); }
.wallet-status-text span { font-size: 0.74rem; color: var(--text-muted); }

.wallet-providers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.wallet-provider-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    color: var(--text-primary);
    min-width: 0;
}
.wallet-provider-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(192,192,192,0.2);
}
.wp-left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    flex: 1;
}
.wp-logo {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
}
.wp-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.08);
}
.wp-name {
    font-size: 0.84rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.wp-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.07);
}
.wp-tag.detected {
    background: rgba(74, 222, 128, 0.08);
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.2);
}
.wc-message {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    min-height: 1.2em;
}

/* Success Screen */
.success-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    gap: 1rem;
}
.success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.25);
    display: flex; align-items: center; justify-content: center;
    color: #4ade80;
}
.success-screen h3 {
    font-size: 1.4rem;
    font-weight: 500;
    background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.success-screen p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.6;
}

/* ============================================
   CRYPTO SELECTION LIST  (replaces chain-selector)
   ============================================ */

.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.25rem;
    margin-top: 0.25rem;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.crypto-list::-webkit-scrollbar { width: 6px; }
.crypto-list::-webkit-scrollbar-track { background: transparent; }
.crypto-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}
.crypto-list::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

.crypto-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.7rem 0.85rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition);
}
.crypto-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(192, 192, 192, 0.25);
    transform: translateX(2px);
}
.crypto-item:active { transform: translateX(2px) scale(0.99); }

.ci-logo {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 2px 6px rgba(0,0,0,0.3);
}
.ci-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ci-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.ci-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.ci-title {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ci-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.ci-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color var(--transition), transform var(--transition);
}
.crypto-item:hover .ci-arrow {
    color: var(--accent);
    transform: translateX(3px);
}

/* Back-to-list button on detail view */
.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.78rem;
    cursor: pointer;
    transition: color var(--transition);
    align-self: flex-start;
}
.detail-back:hover {
    color: var(--text-primary);
}
.detail-back svg { transition: transform var(--transition); }
.detail-back:hover svg { transform: translateX(-2px); }

.crypto-detail-view,
.crypto-list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ============================================
   PAY STATUS / SPINNER / SECONDARY BUTTON
   ============================================ */

.pay-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    background: rgba(192, 192, 192, 0.04);
    border: 1px solid rgba(192, 192, 192, 0.12);
    border-radius: 10px;
}
.pay-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pay-status-text { display: flex; flex-direction: column; gap: 0.1rem; }
.pay-status-text strong { font-size: 0.82rem; color: var(--text-primary); font-weight: 500; }
.pay-status-text span { font-size: 0.72rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }

.btn-secondary {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-secondary:hover:not(:disabled) {
    background: rgba(255,255,255,0.07);
    color: var(--text-primary);
}
.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   REVIEWS — Marquee rows
   ============================================ */

.reviews {
    padding: 8rem 0;
    background: var(--bg-primary);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.reviews .section-container {
    padding: 0 2rem;
    margin-bottom: 3.5rem;
}

.marquee-row {
    overflow: hidden;
    position: relative;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0;
}

.marquee-row::before,
.marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-row::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-row::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
}

.scroll-left {
    animation: scrollLeft 45s linear infinite;
}

.scroll-right {
    animation: scrollRight 45s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.review-card {
    flex-shrink: 0;
    width: 380px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.35), transparent);
}

.review-card::after {
    content: '“';
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 5rem;
    line-height: 1;
    font-family: 'Georgia', serif;
    color: rgba(192, 192, 192, 0.08);
    pointer-events: none;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    transform: translateY(-2px);
}

.review-stars {
    background: linear-gradient(135deg, #e0e0e0 0%, #909090 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8rem;
    margin-bottom: 1.1rem;
    letter-spacing: 4px;
    display: inline-block;
}

.review-card > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212,212,212,0.18) 0%, rgba(120,120,120,0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.15rem;
}

.author-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.author-info span::before {
    content: '✓';
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    background: var(--bg-secondary) url('footerbackground.png') center/cover no-repeat;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 180, 180, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    position: relative;
    background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 50%, #707070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    position: relative;
}

.cta-section .btn-primary {
    position: relative;
}

/* ============================================
   FOOTER — Multi-column
   ============================================ */

.footer {
    padding: 5rem 2rem 2.5rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 28px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    max-width: 260px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .page-frame::before,
    .page-frame::after {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: clamp(3.4rem, 11vw, 4.4rem);
    }

    .review-card {
        width: 300px;
    }

    .trust-stats {
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .footer {
        padding: 4rem 1.25rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-col h4 {
        margin-bottom: 0.9rem;
    }

    .footer-col a {
        font-size: 0.92rem;
        margin-bottom: 0.6rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .products,
    .reviews,
    .cta-section {
        padding: 5rem 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 12.5vw, 3.8rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-grid {
        gap: 1.75rem 1rem;
        margin-bottom: 2rem;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }
}
