:root {
  --bg: #0b0b0f;
  --bg-2: #12121a;
  --surface: #15151c;
  --border: #23232e;
  --text: #f1e6d6;
  --muted: #9a938a;
  --accent: #e5322d;
  --accent-2: #ff6b5b;
  --radius: 16px;
  --max: 1040px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 50% -10%, #1c1420 0%, var(--bg) 60%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  padding-inline: 20px;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 22px;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}
.dot { color: var(--accent); }

.nav nav { display: flex; gap: 22px; }
.nav nav a { color: var(--muted); font-weight: 500; }
.nav nav a:hover { color: var(--text); text-decoration: none; }

main { max-width: var(--max); margin: 0 auto; }

.hero {
  text-align: center;
  padding-block: 56px 80px;
}

.ninja { margin: 0 auto 8px; width: 220px; max-width: 100%; }
.ninja svg { display: block; max-width: 100%; height: auto; }
.eye { animation: blink 5s infinite; transform-origin: center; }
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(.1); }
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 1.02;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}

.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #ff3d37; }
.btn-ghost { border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--bg-2); }

section { padding-block: 48px; }

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kanji {
  color: var(--accent);
  font-size: 1.4em;
  line-height: 1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }

.status-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 560px;
}
.status-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(229, 50, 45, .6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 50, 45, .6); }
  70% { box-shadow: 0 0 0 12px rgba(229, 50, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 50, 45, 0); }
}
.status-label { font-weight: 800; letter-spacing: .12em; color: var(--accent-2); }
.status-since { color: var(--muted); font-size: .9rem; }
.activity { margin: 16px 0; font-size: 1.05rem; }
.activity strong { color: var(--text); }

.meter {
  height: 10px;
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.meter-fill {
  height: 100%;
  width: 99%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .8s ease;
}
.meter-caption { color: var(--muted); font-size: .85rem; margin: 10px 0 0; }

.contact p { color: var(--muted); font-size: 1.05rem; max-width: 560px; }

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-block: 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}

/* Decorative shuriken */
.shuriken {
  position: fixed;
  width: 70px; height: 70px;
  opacity: .08;
  pointer-events: none;
  z-index: -1;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  animation: spin 24s linear infinite;
}
.shuriken-1 { top: 12%; left: 6%; }
.shuriken-2 { top: 58%; right: 8%; width: 110px; height: 110px; animation-duration: 38s; }
.shuriken-3 { bottom: 8%; left: 18%; width: 46px; height: 46px; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

@media (max-width: 480px) {
  .nav nav { gap: 14px; font-size: .95rem; }
  .status-box, .card { padding: 20px; }
}
