/* ==========================================================================
HARLEY CORE // DESIGN SYSTEM v2.2
Warm Graphite + Flame Orange Text Scheme + Volumetric Modals + Profile Dashboard
========================================================================== */
:root {
  --bg-black: #070504;
  --bg-deep: #0a0806;
  --bg-surface: #100d0a;
  --bg-surface-elevated: #171310;
  --bg-card: rgba(16, 13, 10, 0.85);
  --bg-card-hover: rgba(26, 20, 16, 0.95);
  --accent-flame: #f97316;
  --accent-flame-soft: #fb923c;
  --accent-flame-dim: rgba(249, 115, 22, 0.10);
  --accent-flame-border: rgba(249, 115, 22, 0.28);
  --accent-flame-focus: rgba(249, 115, 22, 0.45);
  --accent-silver: #f1f5f9;
  --accent-border: rgba(255, 255, 255, 0.07);
  --accent-border-hover: rgba(255, 255, 255, 0.18);
  --coin-gold: #f59e0b;
  --coin-gold-dim: rgba(245, 158, 11, 0.15);
  --status-active: #10b981;
  --status-active-bg: rgba(16, 185, 129, 0.12);
  --status-error: #f43f5e;
  --status-error-bg: rgba(244, 63, 94, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #b6afa6;
  --text-muted: #90887e;
  --text-dim: #6d6558;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --glass-blur: blur(16px);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-elevated: 0 24px 70px rgba(0, 0, 0, 0.85);
  --trans-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
}
body {
  min-height: 100vh;
  background-color: var(--bg-black);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 85% 50%, rgba(41, 30, 22, 0.18) 0%, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.55;
}
::selection { background: rgba(249, 115, 22, 0.35); color: #fff; }
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

/* HC MONOGRAM */
.hc-monogram { display: block; }
.logo-symbol .hc-monogram { width: 22px; height: 22px; }
.logo-symbol-lg .hc-monogram { width: 30px; height: 30px; }
.brand-core { color: var(--accent-flame); }

/* INTRO PRELOADER */
.intro-preloader {
  position: fixed; inset: 0; background-color: #050302; z-index: 99999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
  pointer-events: auto;
}
.intro-preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-core-box { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.preloader-monogram { width: 110px; height: 110px; position: relative; display: flex; align-items: center; justify-content: center; }
.preloader-monogram .hc-monogram { width: 100%; height: 100%; filter: drop-shadow(0 0 18px rgba(249, 115, 22, 0.28)); }
.preloader-orbit { position: absolute; inset: -14px; border: 1px dashed rgba(249, 115, 22, 0.32); border-radius: 50%; animation: orbitSpin 6s linear infinite; }
#intro-preloader .mono-h { stroke-dasharray: 120; stroke-dashoffset: 120; animation: drawStroke 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
#intro-preloader .mono-c { stroke-dasharray: 120; stroke-dashoffset: 120; animation: drawStroke 1.1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
#intro-preloader .mono-c-top { opacity: 0; animation: fadeInLetters 0.5s 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes drawStroke { to { stroke-dashoffset: 0; } }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.preloader-label-separated {
  font-size: 0.88rem; font-weight: 800; letter-spacing: 8px; color: #fff;
  text-transform: uppercase; margin-top: 0.5rem; opacity: 0;
  animation: fadeInLetters 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeInLetters { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.preloader-thin-line { width: 160px; height: 2px; background: rgba(255, 255, 255, 0.08); border-radius: 1px; overflow: hidden; position: relative; }
.preloader-thin-progress { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent-flame), #ffffff); animation: lineLoad 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes lineLoad { 0% { width: 0%; } 60% { width: 70%; } 100% { width: 100%; } }

/* TRIAL STRIP */
.trial-strip { background: #0c0906; border-bottom: 1px solid rgba(249, 115, 22, 0.18); padding: 0.6rem 0; font-size: 0.82rem; text-align: center; position: relative; z-index: 101; color: var(--text-secondary); }
.trial-strip-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.trial-badge { background: var(--accent-flame-dim); color: var(--accent-flame); font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-sm); border: 1px solid var(--accent-flame-border); }
.trial-link-btn { background: none; border: none; color: #fff; font-weight: 700; font-size: 0.82rem; text-decoration: underline; cursor: pointer; padding: 0; }
.trial-link-btn:hover { color: var(--accent-flame); }

/* NAVBAR & COINS CHIP */
.navbar { position: sticky; top: 0; z-index: 100; backdrop-filter: var(--glass-blur); background: rgba(7, 5, 4, 0.88); border-bottom: 1px solid var(--accent-border); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.brand-logo-group { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.logo-symbol {
  width: 36px; height: 36px; background: var(--bg-surface); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-symbol-lg { width: 44px; height: 44px; }
.brand-naming { display: flex; flex-direction: column; }
.brand-name-separated { font-size: 0.8rem; font-weight: 800; letter-spacing: 3px; color: var(--text-primary); text-transform: uppercase; }
.brand-tag-small { font-size: 0.62rem; color: rgba(249, 115, 22, 0.75); font-family: var(--font-mono); letter-spacing: 1px; }
.nav-menu { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color var(--trans-fast); }
.nav-link:hover { color: #fff; }
.nav-link.active { color: var(--accent-flame); }
.nav-controls { display: flex; align-items: center; gap: 0.6rem; }
.coins-chip { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--coin-gold-dim); border: 1px solid rgba(245, 158, 11, 0.25); color: #fbbf24; padding: 0.35rem 0.75rem; border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700; }
.coins-symbol { width: 16px; height: 16px; }
.mobile-toggle { display: none; background: none; border: 1px solid var(--accent-border); border-radius: var(--radius-sm); color: var(--text-secondary); padding: 0.4rem 0.6rem; cursor: pointer; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.65rem 1.4rem; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: all var(--trans-fast); user-select: none; }
.btn-primary { background: #ffffff; color: #0b0705; border-color: #ffffff; }
.btn-primary:hover { background: #e7e5e4; transform: translateY(-1px); }
.btn-secondary { background: rgba(255, 255, 255, 0.04); color: var(--text-primary); border-color: var(--accent-border); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--accent-flame-border); transform: translateY(-1px); }
.btn-flame { background: var(--accent-flame-dim); color: var(--accent-flame); border-color: var(--accent-flame-border); }
.btn-flame:hover { background: var(--accent-flame); color: #0b0705; }
.btn-gold { background: var(--coin-gold-dim); color: #fbbf24; border-color: rgba(245, 158, 11, 0.3); }
.btn-gold:hover { background: #fbbf24; color: #0b0705; }
.btn-danger { background: var(--status-error-bg); color: var(--status-error); border-color: rgba(244, 63, 94, 0.3); }
.btn-danger:hover { background: var(--status-error); color: #fff; }
.btn-tg { background: rgba(249, 115, 22, 0.85); color: #0b0705; border-color: transparent; font-weight: 800; }
.btn-tg:hover { background: var(--accent-flame-soft); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25); }
.btn-block { width: 100%; }
.btn-lg { padding: 0.85rem 1.8rem; font-size: 0.95rem; }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
.svg-icon { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; flex-shrink: 0; }

/* HERO */
.hero { padding: 6rem 0 4.5rem; text-align: center; position: relative; }
.status-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.85rem; border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--accent-flame-border); color: var(--text-secondary); font-size: 0.75rem; font-family: var(--font-mono); margin-bottom: 1.75rem; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--status-active); box-shadow: 0 0 6px var(--status-active); }
.hero-heading { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 1.25rem; max-width: 900px; margin-left: auto; margin-right: auto; color: #fff; }
.hero-heading span { color: var(--accent-flame); font-weight: 800; }
.hero-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 680px; margin: 0 auto 2.25rem; }
.hero-btn-row { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-trial-card { max-width: 820px; margin: 0 auto; background: linear-gradient(135deg, rgba(26, 16, 10, 0.8) 0%, rgba(12, 8, 6, 0.95) 100%); border: 1px solid var(--accent-flame-border); border-radius: var(--radius-md); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; text-align: left; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.hero-trial-info h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.25rem; color: #fff; }
.hero-trial-info p { font-size: 0.85rem; color: var(--text-secondary); }

/* SECTIONS + ANIMATED EMOJI FEATURE ICONS */
.section { padding: 5rem 0; }
.section-title-wrap { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-label { font-size: 0.72rem; font-family: var(--font-mono); text-transform: uppercase; color: var(--accent-flame); letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.section-heading { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0.75rem; color: #fff; }
.section-sub { color: var(--text-secondary); font-size: 0.95rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.feature-panel { background: var(--bg-card); border: 1px solid var(--accent-border); border-radius: var(--radius-md); padding: 1.75rem; transition: all var(--trans-fast); }
.feature-panel:hover { border-color: var(--accent-flame-border); background: var(--bg-card-hover); transform: translateY(-2px); }
.anim-badge-box { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(249, 115, 22, 0.06); border: 1px solid var(--accent-flame-border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.emoji-icon { font-size: 24px; line-height: 1; display: block; filter: drop-shadow(0 0 9px rgba(249, 115, 22, 0.35)); }
.anim-emoji-float { animation: emojiFloat 3.2s ease-in-out infinite; }
.anim-emoji-float-d { animation: emojiFloat 3.2s 0.6s ease-in-out infinite; }
.anim-emoji-pulse { animation: emojiPulse 2.1s ease-in-out infinite; }
.anim-emoji-zap { animation: emojiPulse 1.15s ease-in-out infinite; }
.anim-emoji-swing { animation: emojiSwing 2.6s ease-in-out infinite; transform-origin: 50% 0; }
.anim-emoji-tilt { animation: emojiTilt 3.4s ease-in-out infinite; }
@keyframes emojiFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes emojiPulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.14); opacity: 1; } }
@keyframes emojiSwing { 0%, 100% { transform: rotate(9deg); } 50% { transform: rotate(-9deg); } }
@keyframes emojiTilt { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* PLATFORMS */
.platforms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.platform-box { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-md); padding: 1.5rem; text-align: left; transition: all var(--trans-fast); }
.platform-box:hover { border-color: var(--accent-flame-border); transform: translateY(-2px); }
.platform-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.4rem; color: #fff; }
.platform-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.platform-tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--status-active); background: var(--status-active-bg); padding: 2px 8px; border-radius: 2px; display: inline-block; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: stretch; }
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.pricing-tier { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-md); padding: 2.25rem 1.75rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; position: relative; transition: all var(--trans-fast); }
.pricing-tier:hover { border-color: var(--accent-border-hover); }
.pricing-tier.featured { border-color: var(--accent-flame-border); background: #120d09; box-shadow: 0 0 35px rgba(249, 115, 22, 0.07); }
.featured-ribbon { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent-flame); color: #0b0705; font-size: 0.68rem; font-family: var(--font-mono); font-weight: 800; text-transform: uppercase; padding: 2px 10px; border-radius: 2px; letter-spacing: 1px; }
.tier-name { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.25rem; color: #fff; }
.tier-price-row { display: flex; align-items: baseline; gap: 4px; margin: 1.25rem 0 0.5rem; }
.tier-price { font-family: var(--font-mono); font-size: 2.7rem; font-weight: 800; color: #fff; }
.tier-coins-sub { font-size: 0.78rem; color: #fbbf24; font-family: var(--font-mono); margin-bottom: 0.5rem; }
.tier-period { font-size: 0.85rem; color: var(--text-muted); }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0 0; border-top: 1px solid var(--accent-border); padding-top: 1.5rem; }
.tier-feature-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.88rem; color: var(--text-secondary); }
.tier-feature-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-flame); opacity: 0.8; flex-shrink: 0; }

/* FAQ */
.faq-box-wrap { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-row { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { padding: 1.15rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-size: 0.95rem; font-weight: 600; user-select: none; color: var(--text-primary); }
.faq-row.open .faq-q { color: var(--accent-flame); }
.faq-icon-chevron { transition: transform var(--trans-fast); }
.faq-row.open .faq-icon-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 1.4rem 1.15rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; display: none; }
.faq-row.open .faq-a { display: block; }

/* VOLUMETRIC MODALS */
.modal-backdrop { position: fixed; inset: 0; background: rgba(5, 3, 2, 0.9); backdrop-filter: blur(12px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity var(--trans-smooth), visibility var(--trans-smooth); }
.modal-backdrop.active { opacity: 1; visibility: visible; }
.auth-modal {
  width: 100%; max-width: 520px;
  background: linear-gradient(165deg, #1a140e 0%, #100c08 55%, #0b0806 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-elevated), 0 0 55px rgba(249, 115, 22, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  max-height: 92vh; overflow-y: auto;
}
.auth-modal::before {
  content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-flame), transparent);
  border-radius: 2px; pointer-events: none;
}
.auth-modal::after {
  content: ""; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 4px; z-index: 2; }
.modal-close:hover { color: var(--accent-flame); }
.modal-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.3rem; color: #fff; }
.modal-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.auth-tabs { display: flex; gap: 0.5rem; background: rgba(0, 0, 0, 0.35); border: 1px solid var(--accent-border); border-radius: var(--radius-sm); padding: 0.35rem; margin-bottom: 1.75rem; }
.auth-tab-btn { flex: 1; background: none; border: none; color: var(--text-dim); font-size: 0.9rem; font-weight: 700; padding: 0.55rem 0.8rem; cursor: pointer; border-radius: var(--radius-sm); transition: all var(--trans-fast); }
.auth-tab-btn.active { color: #0b0705; background: var(--accent-flame); box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3); }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.field-label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; font-family: var(--font-mono); letter-spacing: 1px; }
.field-input {
  background: #060403; border: 1px solid var(--accent-border); border-radius: var(--radius-md);
  padding: 0.85rem 1rem; font-family: var(--font-sans); font-size: 0.92rem; color: #fff; outline: none; width: 100%;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.field-input:focus { border-color: var(--accent-flame-focus); box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12); }
.checkout-plan { font-family: var(--font-mono); font-size: 0.95rem; font-weight: 700; color: #fff; }
.checkout-price { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 800; color: #fff; }
.discount-badge { display: none; margin-left: 0.6rem; font-size: 0.72rem; font-family: var(--font-mono); color: var(--accent-flame); background: var(--accent-flame-dim); border: 1px solid var(--accent-flame-border); padding: 2px 8px; border-radius: 2px; }
.coins-eq-note { font-size: 0.78rem; color: #fbbf24; font-family: var(--font-mono); margin-top: 0.25rem; }
.promo-input-group { display: flex; gap: 0.5rem; }
.promo-status-msg { font-size: 0.78rem; margin-top: 0.35rem; font-family: var(--font-mono); display: none; }
.promo-status-msg.active { display: block; color: var(--status-active); }
.promo-status-msg.error { display: block; color: var(--status-error); }
.price-strike { text-decoration: line-through; color: var(--text-dim); margin-right: 0.5rem; font-size: 0.9rem; }
.pay-option { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.9rem; border: 1px solid var(--accent-border); border-radius: var(--radius-md); margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-secondary); cursor: pointer; transition: all var(--trans-fast); }
.pay-option input { accent-color: var(--accent-flame); }
.pay-option:has(input:checked) { border-color: var(--accent-flame-border); background: var(--accent-flame-dim); color: #fff; }
.requirements-card { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--accent-border); border-radius: var(--radius-md); padding: 0.95rem 1rem; margin-bottom: 1.35rem; font-size: 0.78rem; }
.req-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-dim); margin-bottom: 0.35rem; }
.req-item:last-child { margin-bottom: 0; }
.req-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim); }
.req-item.met { color: var(--status-active); }
.req-item.met .req-dot { background: var(--status-active); }
.req-item.failed { color: var(--status-error); }
.req-item.failed .req-dot { background: var(--status-error); }
.auth-error-msg { font-size: 0.8rem; color: var(--status-error); background: var(--status-error-bg); border: 1px solid rgba(244, 63, 94, 0.3); padding: 0.55rem 0.8rem; border-radius: var(--radius-sm); margin-bottom: 1.1rem; display: none; }

/* TOP-UP AMOUNT INPUT */
.topup-amount-field { display: none; }
.topup-amount-field.visible { display: flex; }
.topup-amount-hint { font-size: 0.72rem; color: var(--text-dim); font-family: var(--font-mono); margin-top: 0.3rem; }

/* DASHBOARD v2 */
.dash-wrapper { padding: 2.5rem 0 5rem; }
.dash-guest { background: var(--bg-surface); border: 1px solid var(--accent-flame-border); border-radius: var(--radius-md); padding: 2.5rem 2rem; text-align: center; margin-bottom: 2rem; }
.dash-guest h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #fff; }
.dash-guest p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.25rem; }
.dash-profile-card {
  background: linear-gradient(150deg, rgba(28, 19, 12, 0.9) 0%, rgba(13, 9, 7, 0.95) 100%);
  border: 1px solid var(--accent-flame-border);
  border-radius: var(--radius-lg);
  padding: 1.9rem 2rem;
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative; overflow: hidden;
}
.dash-profile-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.6), transparent);
}
.profile-avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.profile-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.5);
  background: #1c1512; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 800; font-size: 1.7rem; color: var(--accent-flame);
  box-shadow: 0 0 26px rgba(249, 115, 22, 0.2);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--accent-border); color: var(--text-secondary); font-size: 0.72rem; font-weight: 600; padding: 0.35rem 0.7rem; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--trans-fast); }
.avatar-btn:hover { border-color: var(--accent-flame-border); color: var(--accent-flame); }
.avatar-btn-danger:hover { border-color: rgba(244, 63, 94, 0.4); color: var(--status-error); }
.profile-meta { flex: 1; min-width: 240px; }
.dash-username { font-weight: 800; font-size: 1.3rem; color: #fff; }
.dash-status { font-family: var(--font-mono); font-size: 0.68rem; color: var(--status-active); background: var(--status-active-bg); border: 1px solid rgba(16, 185, 129, 0.25); padding: 2px 8px; border-radius: 2px; letter-spacing: 1px; display: inline-block; margin: 0.35rem 0; }
.dash-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }
.dash-note b, .dash-line b { color: var(--text-secondary); font-weight: 600; }
.profile-actions { margin-left: auto; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.dash-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.dash-widget {
  background: linear-gradient(165deg, rgba(22, 17, 12, 0.88) 0%, rgba(12, 9, 7, 0.95) 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.35rem;
  position: relative; overflow: hidden;
  transition: all var(--trans-fast);
}
.dash-widget:hover { border-color: var(--accent-flame-border); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5); }
.dash-widget::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
  opacity: 0; transition: opacity var(--trans-fast);
}
.dash-widget:hover::after { opacity: 1; }
.dash-widget.hero-widget { grid-column: 1 / -1; background: linear-gradient(150deg, rgba(30, 20, 12, 0.92) 0%, rgba(12, 8, 6, 0.96) 100%); border-color: rgba(255, 255, 255, 0.12); }
.widget-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; color: var(--accent-flame); margin-bottom: 0.75rem; letter-spacing: 1.5px; }
.balance-large { font-family: var(--font-mono); font-size: 2.3rem; font-weight: 900; color: #fbbf24; display: flex; align-items: baseline; gap: 0.5rem; }
.balance-sub { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.25rem; }
.dash-plan-name { font-size: 1.2rem; font-weight: 800; color: var(--accent-flame); margin-bottom: 0.55rem; }
.dash-line { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.35rem; }
.dash-btn-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.dash-file-name { font-family: var(--font-mono); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }

/* REFERRAL */
.ref-cta-card { max-width: 860px; margin: 2.5rem auto 0; background: linear-gradient(135deg, rgba(26, 16, 10, 0.85) 0%, rgba(12, 8, 6, 0.95) 100%); border: 1px solid var(--accent-flame-border); border-radius: var(--radius-md); padding: 1.75rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; text-align: left; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.ref-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.ref-step { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-md); padding: 1.5rem; transition: all var(--trans-fast); }
.ref-step:hover { border-color: var(--accent-flame-border); transform: translateY(-2px); }
.ref-step-num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-flame); letter-spacing: 2px; margin-bottom: 0.75rem; display: block; }
.ref-step h4 { font-size: 0.98rem; margin-bottom: 0.4rem; color: #fff; }
.ref-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.ref-highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.ref-highlight { background: var(--bg-card); border: 1px solid var(--accent-border); border-radius: var(--radius-md); padding: 1.5rem; }
.ref-highlight .big { font-family: var(--font-mono); font-size: 1.9rem; font-weight: 800; color: var(--accent-flame); }
.ref-highlight .big.amber { color: #fbbf24; }
.ref-highlight p { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.35rem; }
.ref-tiers-wrap { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-md); padding: 0.5rem 1.5rem; overflow-x: auto; }
.ref-tiers { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.ref-tiers th, .ref-tiers td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--accent-border); text-align: left; color: var(--text-secondary); }
.ref-tiers tr:last-child td { border-bottom: none; }
.ref-tiers th { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); }
.ref-tiers td:last-child { font-family: var(--font-mono); color: var(--accent-flame); font-weight: 700; }
.ref-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.6; }
.ref-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.ref-col-card { background: var(--bg-surface); border: 1px solid var(--accent-border); border-radius: var(--radius-md); padding: 1.75rem; }
.ref-col-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.ref-rules { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.ref-rules li { position: relative; padding-left: 1.4rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; }
.ref-rules li::before { content: ""; position: absolute; left: 0; top: 0.45rem; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-flame); opacity: 0.8; }
.ref-final-cta { margin-top: 3.5rem; text-align: center; background: var(--bg-surface); border: 1px solid var(--accent-flame-border); border-radius: var(--radius-md); padding: 2.5rem 2rem; }
.ref-final-cta h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.4rem; color: #fff; }
.ref-final-cta p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* FOOTER */
.footer { border-top: 1px solid var(--accent-border); padding: 3.5rem 0 2rem; color: var(--text-dim); font-size: 0.85rem; background: #060403; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1.4fr; gap: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.footer-about { font-size: 0.82rem; line-height: 1.6; color: var(--text-muted); max-width: 320px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-secondary); margin-bottom: 0.9rem; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.45rem; font-size: 0.85rem; transition: color var(--trans-fast); }
.footer-col a:hover { color: var(--accent-flame); }
.footer-col a.btn { display: inline-flex; margin-top: 0.6rem; color: var(--accent-flame); }
.footer-col a.btn:hover { color: #0b0705; }
.footer-ref-col p { font-size: 0.82rem; line-height: 1.6; color: var(--text-muted); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--accent-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer-social { display: flex; align-items: center; gap: 0.6rem; }
.social-icon {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm); color: var(--text-secondary);
  transition: all var(--trans-fast);
}
.social-icon:hover {
  background: var(--accent-flame-dim); border-color: rgba(249, 115, 22, 0.4);
  color: var(--accent-flame); transform: translateY(-2px);
}
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* TOAST */
.toast-notice { position: fixed; bottom: 24px; right: 24px; background: #100d0a; border: 1px solid rgba(249, 115, 22, 0.3); box-shadow: var(--shadow-elevated); padding: 0.75rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.85rem; color: #fff; z-index: 10000; display: flex; align-items: center; gap: 0.6rem; animation: slideToast 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.toast-notice.toast-error { border-color: var(--status-error); }
@keyframes slideToast { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .profile-actions { margin-left: 0; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-menu { position: fixed; top: 68px; left: 0; right: 0; background: #0a0705; flex-direction: column; align-items: flex-start; padding: 1.5rem; border-bottom: 1px solid var(--accent-border); display: none; }
  .nav-menu.open { display: flex; }
  .nav-controls .btn-hide-mobile { display: none; }
  .hero { padding: 4rem 0 3rem; }
  .auth-modal { padding: 2.25rem 1.5rem; }
}

/* NEW HC LOGO - Gradient Orange/Red Angular Style */
.hc-logo-new {
  display: block;
  width: 100%;
  height: 100%;
}
.logo-symbol {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-symbol-lg {
  width: 50px;
  height: 50px;
}
.preloader-monogram .hc-logo-new {
  filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.4));
}