/* ===========================
   DARK WIRED — Main Stylesheet
   =========================== */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #181818;
  --red: #cc0000;
  --red-bright: #ff1a1a;
  --white: #ffffff;
  --gray: #999999;
  --light: #cccccc;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.red { color: var(--red-bright); }
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1a1a1a;
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo span {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 32px;
  border: 2px solid #2a0000;
  box-shadow: 0 0 40px rgba(200,0,0,0.3);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--light);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(180,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200,0,0,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid #333;
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-1px);
}
.btn-large { padding: 18px 40px; font-size: 17px; }

/* === ABOUT === */
.about {
  padding: 100px 0;
  background: var(--dark);
}
.about h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 20px;
}
.about p {
  color: var(--light);
  font-size: 17px;
  max-width: 680px;
  margin-bottom: 16px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.pillar {
  background: var(--card);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.pillar-icon { font-size: 32px; margin-bottom: 14px; }
.pillar h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.pillar p { color: var(--gray); font-size: 15px; }

/* === TIKTOK === */
.tiktok {
  padding: 100px 0;
  background: var(--black);
}
.tiktok h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 16px;
}
.tiktok p {
  color: var(--light);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* === APP === */
.app {
  padding: 100px 0;
  background: var(--dark);
}
.app-badge {
  display: inline-block;
  background: #1a0000;
  color: var(--red-bright);
  border: 1px solid #3a0000;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.app h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 16px;
}
.app p {
  color: var(--light);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 36px;
}
.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.app-feature {
  background: var(--card);
  border: 1px solid #222;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
}
.app-notify {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 0 !important;
}
.app-notify a { text-decoration: none; font-weight: 700; }
.app-notify a:hover { text-decoration: underline; }

/* === FOOTER === */
footer {
  padding: 60px 0;
  background: var(--black);
  border-top: 1px solid #1a1a1a;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.footer-brand {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.footer-tag {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  color: #444;
  font-size: 12px;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-cta { flex-direction: column; align-items: center; }
  .pillars { grid-template-columns: 1fr; }
}
