:root {
  --black: #0a0a0a;
  --white: #f8f5f0;
  --orange: #FF5C1A;
  --orange-light: #FF7A40;
  --green: #00C853;
  --card-bg: #141414;
  --border: rgba(255,255,255,0.08);
  --text-muted: rgba(248,245,240,0.45);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(10,10,10,0.8);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  text-decoration: none;
  color: var(--white);
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.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: var(--white); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.btn-ghost {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary {
  padding: 10px 22px;
  background: var(--orange);
  border: none;
  border-radius: 100px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--orange-light); }
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,92,26,0.15) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-content { max-width: 700px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,92,26,0.12);
  border: 1px solid rgba(255,92,26,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 28px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-large {
  padding: 16px 32px;
  background: var(--orange);
  border: none;
  border-radius: 100px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-large:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255,92,26,0.3);
}
.btn-large-ghost {
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.categories-section { padding: 80px 40px; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}
.section-title span { color: var(--orange); }
.see-all {
  color: var(--orange);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.category-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}
.category-card:hover {
  border-color: rgba(255,92,26,0.3);
  transform: translateY(-4px);
}
.category-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.category-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.category-count { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.how-section {
  padding: 80px 40px;
  background: linear-gradient(180deg, transparent, rgba(255,92,26,0.04), transparent);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 40px auto 0;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.how-card { background: var(--black); padding: 48px 40px; }
.how-number {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,92,26,0.08);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -4px;
}
.how-icon { font-size: 32px; margin-bottom: 16px; }
.how-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.how-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.cta-section { padding: 80px 40px; text-align: center; }
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.cta-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}
.cta-box h2 span { color: var(--orange); }
.cta-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.artisan-cta {
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--orange);
  border-radius: 100px;
  color: var(--orange);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
footer {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 16px;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
  z-index: 100;
}
.mobile-nav-items {
  display: flex;
  justify-content: space-around;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  cursor: pointer;
}
.mobile-nav-item.active { color: var(--orange); }
.mobile-nav-item span:first-child { font-size: 22px; }
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { letter-spacing: -2px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .categories-section { padding: 60px 20px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .how-section { padding: 60px 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 60px 20px; }
  .cta-box { padding: 48px 28px; border-radius: 24px; }
  footer { padding: 40px 20px 100px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mobile-nav { display: block; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
