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

:root {
  --bg: #020617;
  --bg-alt: #020617;
  --card-bg: #020617;
  --accent: #38bdf8;
  --text: #e5f0ff;
  --muted: #9ca3af;
  --border-subtle: rgba(37, 99, 235, 0.55);
  --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.9);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --container-width: 1120px;
}

html, body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 30% -10%, rgba(56, 189, 248, .12), transparent 45%), #020617;
}

body { line-height: 1.6; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.4rem;
}

.section { padding: 4rem 0; }
.section-alt { padding: 4rem 0; background: rgba(2, 6, 23, 0.6); }

.section-header { margin-bottom: 2rem; }
.section-lead { color: var(--muted); max-width: 44rem; }

.hint { color: rgba(156, 163, 175, 0.9); margin-top: .6rem; font-size: .9rem; }
code { background: rgba(2, 6, 23, .75); border: 1px solid rgba(56, 189, 248, .35); padding: .12rem .35rem; border-radius: .5rem; }

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.4rem;
  align-items: flex-start;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.75));
}

.header-inner { display: flex; justify-content: space-between; align-items: center; padding: .9rem 0; }
.logo { display: flex; align-items: center; gap: .65rem; }

.logo-img {
  width: 40px; height: 40px; border-radius: 999px;
  border: 2px solid rgba(56, 189, 248, .9);
  box-shadow: 0 0 22px rgba(56, 189, 248, .55);
  object-fit: cover; background: #020617;
}
.logo-text { font-weight: 700; letter-spacing: .03em; }

.site-nav { display: flex; gap: 1.3rem; font-size: .9rem; }
.site-nav a { color: var(--muted); text-decoration: none; border-bottom: 2px solid transparent; padding-bottom: .15rem; }
.site-nav a:hover { color: var(--text); border-color: var(--accent); }

/* HERO */
.hero { padding: 4.5rem 0 3rem; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.6rem; align-items: center; }

.hero-text h1 { margin: 0 0 .7rem; font-size: clamp(2.1rem, 3vw, 2.7rem); }
.hero-subtitle { color: var(--muted); max-width: 32rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.2rem; }

.btn { padding: .55rem 1.3rem; border-radius: var(--radius-pill); border: 1px solid transparent; text-decoration: none; font-size: .9rem; cursor: pointer; white-space: nowrap; }
.btn.primary { background: linear-gradient(135deg, #38bdf8, #1d4ed8); color: #020617; box-shadow: 0 18px 36px rgba(15, 23, 42, 0.9); }
.btn.ghost { border-color: var(--border-subtle); background: rgba(2, 6, 23, .85); color: var(--text); }
.btn-full { width: 100%; justify-content: center; }

.hero-card {
  padding: 1.2rem; border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, .7);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, .22), rgba(2, 6, 23, .96));
  box-shadow: var(--shadow-soft);
}

.hero-tag { display: inline-block; border-radius: var(--radius-pill); padding: .25rem .7rem; border: 1px solid rgba(56, 189, 248, .6); font-size: .75rem; }

.hero-video-placeholder {
  border: 1px dashed rgba(148, 163, 184, .5);
  border-radius: 14px;
  min-height: 160px;
  display: grid;
  place-items: center;
  color: var(--muted);
  margin: .7rem 0;
}

.hero-caption { font-size: .85rem; color: var(--muted); }

/* CHARACTER GRID */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }

.char-card {
  padding: 1.15rem 1.25rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, .4);
  background: rgba(2, 6, 23, .9);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.9);
}

.char-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }

.char-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(56, 189, 248, .95);
  box-shadow: 0 0 18px rgba(56, 189, 248, .45);
  background: rgba(2, 6, 23, .9);
}

.char-card h3 { margin: 0; font-size: 1.05rem; }

/* WATCH / GENERIC CARDS */
.watch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.3rem; }

.watch-card,
.about-card,
.community-card,
.contact-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, .4);
  background: rgba(2, 6, 23, .9);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.9);
}

.watch-card h3 { margin-top: 0; margin-bottom: .4rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }

.chip-link {
  display: inline-flex;
  align-items: center;
  padding: .25rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, .65);
  color: var(--text);
  font-size: .82rem;
  text-decoration: none;
}

/* LISTS */
.tick-list { list-style: none; padding-left: 0; margin: .6rem 0 0; }
.tick-list li { position: relative; padding-left: 1.1rem; margin-bottom: .35rem; font-size: .9rem; }
.tick-list li::before { content: "•"; position: absolute; left: .1rem; top: 0; color: var(--accent); }

/* CONTACT FORM */
.contact-layout { align-items: stretch; }
.contact-card { display: flex; flex-direction: column; justify-content: center; }
.contact-form { display: grid; gap: .8rem; }

.field { display: flex; flex-direction: column; gap: .25rem; }
.field label { font-size: .85rem; color: var(--muted); }

.field input,
.field textarea {
  background: rgba(2, 6, 23, .96);
  color: var(--text);
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, .5);
  padding: .55rem .7rem;
  font-size: .9rem;
}

/* FOOTER */
.site-footer { border-top: 1px solid rgba(56, 189, 248, .3); padding: 1.6rem 0 2rem; background: rgba(2, 6, 23, .98); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; color: var(--muted); font-size: .85rem; }
.footer-links { display: flex; gap: .9rem; }
.footer-links a { color: var(--muted); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .two-column,
  .hero-inner { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hero { padding-top: 3.3rem; }
}

@media (max-width: 640px) {
  .section,
  .section-alt { padding: 3.2rem 0; }
}