:root {
  --black: #060606;
  --panel: #0d0d0d;
  --red: #c40000;
  --red-bright: #ff1a1a;
  --gold: #c9a84c;
  --gold-dim: rgba(201,168,76,0.3);
  --white: #f0f0f0;
  --dim: #444;
  --mid: #888;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 2.5rem;
  background: rgba(6,6,6,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,0,0,0.4);
  z-index: 100;
}

.logo-img {
  height: 40px; width: auto;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
}

nav a {
  color: var(--gold); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.25em;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.15rem; transition: all 0.3s;
}
nav a:hover { color: var(--white); border-color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,6,0.5) 0%, rgba(6,6,6,0.2) 40%, rgba(6,6,6,0.7) 85%, var(--black) 100%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,0,0,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 2rem; max-width: 800px;
}

.hero-logo {
  width: clamp(280px, 50vw, 500px); height: auto;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.35)) drop-shadow(0 4px 20px rgba(0,0,0,0.8));
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 0.8rem; letter-spacing: 0.55em;
  color: var(--gold); margin-bottom: 1.8rem;
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}

.hero-desc {
  color: rgba(240,240,240,0.75); font-size: 1rem; line-height: 1.85;
  max-width: 560px; margin-bottom: 2.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.hero-cta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

.cta-primary {
  display: inline-block; padding: 0.9rem 2.2rem;
  background: var(--red); color: var(--white);
  text-decoration: none; font-size: 0.75rem; letter-spacing: 0.3em;
  font-weight: bold; transition: all 0.3s;
  border: 1px solid var(--red);
}
.cta-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 28px rgba(196,0,0,0.5);
}

.relaunch-badge {
  font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold);
  border: 1px solid var(--gold-dim); padding: 0.5rem 1rem;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.3); font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── APP SECTION ── */
.app-section {
  display: flex; align-items: center; gap: 5rem;
  padding: 6rem 6rem; background: var(--panel);
  position: relative;
}
.app-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.app-left {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
}

.phone-frame {
  width: 220px;
  background: #111; border-radius: 32px;
  border: 2px solid #2a2a2a;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 0 20px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}

.phone-screen {
  width: 100%; height: 390px; overflow: hidden;
  background: #000;
}
.app-screenshot {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

.phone-chin {
  height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.phone-chin::after {
  content: ''; width: 40px; height: 4px;
  background: #2a2a2a; border-radius: 2px;
}

.app-badge {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.6rem 1rem; border-radius: 8px;
}
.app-icon { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.app-name { font-size: 0.7rem; letter-spacing: 0.2em; font-weight: bold; }
.app-platforms { font-size: 0.6rem; letter-spacing: 0.15em; color: var(--mid); margin-top: 0.2rem; }

.app-right { flex: 1; max-width: 520px; }

.eyebrow {
  font-size: 0.6rem; letter-spacing: 0.45em;
  color: var(--red); margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900;
  letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 1.2rem;
}
.accent { color: var(--red); }

.section-desc {
  color: var(--mid); line-height: 1.8; margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.features { margin-bottom: 2rem; }
.feature { display: flex; gap: 1.2rem; margin-bottom: 1.5rem; }
.feature-num {
  font-size: 0.6rem; color: var(--red); letter-spacing: 0.2em;
  flex-shrink: 0; padding-top: 0.3rem; min-width: 20px;
}
.feature-text { font-size: 0.88rem; line-height: 1.65; color: #aaa; }
.feature-text strong { color: var(--white); display: block; margin-bottom: 0.2rem; }

.styles { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.styles span {
  font-size: 0.6rem; letter-spacing: 0.15em;
  border: 1px solid var(--dim); color: #666;
  padding: 0.3rem 0.8rem; text-transform: uppercase;
}

/* ── DOJO SECTION ── */
.dojo-section {
  position: relative; padding: 7rem 6rem;
  overflow: hidden;
}

.dojo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
}
.dojo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.75) 50%, rgba(6,6,6,0.5) 100%),
    linear-gradient(to bottom, var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%);
}

.dojo-content {
  position: relative; z-index: 2; max-width: 560px;
}
.dojo-content .eyebrow { margin-bottom: 1rem; }
.dojo-content h2 { margin-bottom: 1.5rem; }
.dojo-content p {
  color: var(--mid); line-height: 1.8; margin-bottom: 3rem; font-size: 0.95rem;
}

.dojo-stats { display: flex; gap: 3rem; }
.stat-val {
  font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1;
}
.stat-plus { font-size: 1.5rem; color: var(--red); }
.stat-label { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--gold); margin-top: 0.4rem; }

/* ── BOTTOM CTA ── */
.bottom-cta {
  display: flex; flex-direction: column; align-items: center;
  padding: 5rem 2rem; text-align: center;
  background: var(--panel);
  border-top: 1px solid rgba(196,0,0,0.25);
}

.bottom-logo {
  width: clamp(200px, 35vw, 340px); height: auto;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.25));
  margin-bottom: 1.5rem;
}

.bottom-tagline {
  font-size: 1.05rem; line-height: 1.8; color: var(--mid);
  margin-bottom: 2rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid #111; padding: 1rem 2.5rem;
}
.footer-bar {
  display: flex; justify-content: space-between;
  font-size: 0.6rem; letter-spacing: 0.2em; color: var(--dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .app-section { flex-direction: column; padding: 4rem 2rem; gap: 3rem; }
  .app-right { max-width: 100%; }
  .dojo-section { padding: 5rem 2rem; }
  .dojo-stats { gap: 2rem; }
}
