/* ============================================
   HOME PAGE — ACID / HYPER-MODERN
   ============================================ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

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

/* Large acid splat blobs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: orbFloat 9s ease-in-out infinite;
}
.orb-1 {
  width: 560px; height: 400px;
  background: rgba(200,255,0,0.22);
  top: -80px; left: -120px;
  animation-delay: 0s;
}
.orb-2 {
  width: 380px; height: 380px;
  background: rgba(255,0,128,0.18);
  top: 20%; right: 8%;
  animation-delay: -3.5s;
}
.orb-3 {
  width: 320px; height: 280px;
  background: rgba(0,255,209,0.14);
  bottom: 5%; left: 35%;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.04); }
}

/* Fine dot-grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(200,255,0,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 2px;
  background: rgba(200,255,0,0.08);
  border: 1px solid rgba(200,255,0,0.30);
  font-size: 11px;
  font-weight: 800;
  color: var(--acid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.5s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.7); }
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
/* Acid highlight */
.hero-title .gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 32px; background: var(--border); }

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  animation: fadeInRight 0.8s ease 0.3s both;
}
.content-cards { position: relative; width: 420px; height: 520px; }

.content-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  width: 220px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
}
.content-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200,255,0,0.15);
}
.card-1 { top: 0; left: 0; animation: cardFloat1 6s ease-in-out infinite; }
.card-2 { top: 40px; right: 0; animation: cardFloat2 7s ease-in-out infinite; }
.card-3 { bottom: 20px; left: 40px; animation: cardFloat3 5s ease-in-out infinite; }

@keyframes cardFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes cardFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes cardFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.card-type-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-type-badge.video   { background:rgba(255,0,128,0.12); color:#FF6EB5; }
.card-type-badge.manga   { background:rgba(123,0,255,0.12); color:#BB80FF; }
.card-type-badge.image   { background:rgba(0,255,209,0.10); color:#00FFD1; }

.card-thumb {
  width: 100%; height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.thumb-bg { position: absolute; inset: 0; }
.video-thumb { background: linear-gradient(135deg, #0a001a, #300060, #8b0040, #FF0080); }
.manga-thumb { background: linear-gradient(135deg, #05001f, #4a0090, #00FFD1, #7B00FF); }
.image-thumb { background: linear-gradient(135deg, #001a10, #00804a, #C8FF00, #00FFD1); }
.thumb-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.thumb-play svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }

.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.card-title { font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.card-price {
  font-size: 14px; font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-tags { display: flex; gap: 4px; }

/* Floating notifications */
.floating-notification {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,13,22,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: 0 0 24px rgba(200,255,0,0.15);
  animation: notifFloat 4s ease-in-out infinite;
}
.notif-1 { bottom: 80px; right: -20px; animation-delay: 0s; }
.notif-2 { top: 160px; left: -40px; animation-delay: -2s; }
@keyframes notifFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.notif-icon { font-size: 20px; }
.notif-title { font-size: 12px; font-weight: 800; color: var(--acid); letter-spacing: 0.04em; }
.notif-sub { font-size: 11px; color: var(--text-muted); }

/* ── Content Types ── */
.content-types { padding: 100px 24px; max-width: 1280px; margin: 0 auto; }
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
/* Sharp corner accent */
.type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--acid);
  transition: height 0.3s ease;
}
.type-card:hover::before { height: 100%; }
.type-card:hover {
  border-color: rgba(200,255,0,0.25);
  background: var(--bg-card-hover);
  transform: translateX(3px);
}
.type-card.enterprise {
  grid-column: span 1;
  border-color: rgba(255,0,128,0.15);
}
.type-card.enterprise::before { background: var(--magenta); }

.type-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  border-radius: var(--radius-md);
}
.type-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.type-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.type-stats { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); }
.type-hot { font-size: 12px; font-weight: 700; color: var(--acid); letter-spacing: 0.04em; }
.type-arrow { position: absolute; bottom: 24px; right: 24px; font-size: 18px; color: var(--text-muted); transition: var(--transition); }
.type-card:hover .type-arrow { color: var(--acid); transform: translateX(4px); }

/* ── How It Works ── */
.how-it-works { padding: 100px 24px; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-it-works .section-header { max-width: 1280px; margin: 0 auto 40px; }

.flow-tabs { display: flex; gap: 0; justify-content: center; margin-bottom: 48px; border: 1px solid var(--border); width: fit-content; margin-left: auto; margin-right: auto; border-radius: var(--radius-sm); overflow: hidden; }
.flow-tab {
  padding: 10px 26px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.flow-tab:last-child { border-right: none; }
.flow-tab.active, .flow-tab:hover {
  background: var(--acid);
  color: #000;
  font-weight: 900;
}

.flow-steps { display: flex; align-items: stretch; gap: 0; justify-content: center; max-width: 900px; margin: 0 auto; border: 1px solid var(--border); }
.flow-step {
  flex: 1;
  text-align: center;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 40px 28px;
  transition: var(--transition);
}
.flow-step:last-child { border-right: none; }
.flow-step:hover { background: var(--bg-card-hover); }
.step-num { font-size: 10px; font-weight: 900; letter-spacing: 0.2em; color: var(--acid); margin-bottom: 14px; text-transform: uppercase; }
.step-icon { font-size: 36px; margin-bottom: 14px; }
.flow-step h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.flow-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.flow-arrow { display: none; }

/* ── Featured Tasks ── */
.featured-tasks { padding: 100px 24px; max-width: 1280px; margin: 0 auto; }
.featured-tasks .section-header { display: flex; align-items: center; flex-wrap: wrap; text-align: left; margin-bottom: 40px; }
.featured-tasks .section-header .section-tag { margin: 0 auto 0 0; }
.featured-tasks .section-header h2 { width: 100%; text-align: left; margin-bottom: 0; }
.tasks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.task-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.task-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.task-card:hover {
  border-color: rgba(200,255,0,0.20);
  background: var(--bg-card-hover);
}
.task-card:hover::after { transform: scaleX(1); }

.task-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.task-type { display:inline-flex;align-items:center;padding:3px 9px;border-radius:2px;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase; }
.task-type.video   { background:rgba(255,0,128,0.12); color:#FF6EB5; }
.task-type.manga   { background:rgba(123,0,255,0.12); color:#BB80FF; }
.task-type.image   { background:rgba(0,255,209,0.10); color:#00FFD1; }
.task-urgent { font-size:11px; color:var(--magenta); font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.task-new    { font-size:11px; color:var(--acid); font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
.task-title { font-size:15px; font-weight:700; color:var(--text-primary); margin-bottom:14px; line-height:1.4; }
.task-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:18px; }
.task-tags span { padding:3px 8px; border-radius:2px; background:rgba(200,255,0,0.05); border:1px solid rgba(200,255,0,0.15); font-size:11px; color:var(--text-muted); font-weight:600; letter-spacing:.04em; text-transform:uppercase; }

.task-detail { display:flex; gap:20px; padding:14px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin-bottom:16px; }
.task-budget,.task-deadline,.task-bids { display:flex; flex-direction:column; gap:4px; }
.task-budget .label, .task-deadline .label, .task-bids .label { font-size:10px; color:var(--text-muted); text-transform:uppercase; letter-spacing:.08em; font-weight:700; }
.task-budget .amount { font-size:18px; font-weight:900; background:var(--gradient-main); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.task-deadline span:last-child, .task-bids span:last-child { font-size:15px; font-weight:800; color:var(--text-primary); }

.task-poster { display:flex; align-items:center; gap:10px; }
.poster-avatar { width:34px; height:34px; border-radius:2px; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:900; color:black; flex-shrink:0; }
.poster-name { font-size:13px; font-weight:700; color:var(--text-primary); }
.poster-credit { font-size:11px; color:var(--text-muted); }

/* ── Trust Section ── */
.trust-section { padding: 100px 24px; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.trust-section .section-header { max-width: 1280px; margin: 0 auto 56px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; max-width: 1280px; margin: 0 auto; }
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.trust-card:first-child { border-left: 3px solid var(--acid); }
.trust-card:nth-child(2) { border-left: 3px solid var(--magenta); }
.trust-card:nth-child(3) { border-left: 3px solid var(--cyan); }
.trust-card:nth-child(4) { border-left: 3px solid var(--violet); }
.trust-card:hover { background: var(--bg-card-hover); }
.trust-icon { font-size: 36px; margin-bottom: 16px; }
.trust-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.trust-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── CTA ── */
.cta-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 {
  position: absolute;
  width: 700px; height: 300px;
  border-radius: 50%;
  background: rgba(200,255,0,0.12);
  filter: blur(120px);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.orb-cta-2 {
  position: absolute;
  width: 400px; height: 250px;
  border-radius: 50%;
  background: rgba(255,0,128,0.10);
  filter: blur(100px);
  top: 50%; right: 15%;
  transform: translateY(-50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: 52px; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.04em; line-height: 1.0; }
.cta-content p { font-size: 17px; color: var(--text-secondary); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
