:root {
  --bg: #061017;
  --bg2: #091b24;
  --panel: rgba(13, 35, 45, .76);
  --line: rgba(100, 223, 255, .18);
  --cyan: #62e5ff;
  --cyan2: #16bfe8;
  --text: #f3fbff;
  --muted: #9fb8c3;
  --silver: #dce8ed;
  --shadow: 0 20px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 76% 20%, rgba(35, 197, 230, .13), transparent 28rem),
    radial-gradient(circle at 5% 85%, rgba(35, 197, 230, .08), transparent 30rem),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(6,16,23,.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; gap: 10px; align-items: center; font-weight: 900; letter-spacing: .12em; }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid rgba(98,229,255,.65); border-radius: 50%;
  color: var(--cyan); box-shadow: inset 0 0 20px rgba(98,229,255,.08);
  font-size: 11px;
}
.brand-word { font-size: 14px; }
nav { display: flex; gap: 26px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--cyan); }

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: 40px;
  padding: clamp(64px, 9vw, 130px) clamp(22px, 7vw, 110px);
  max-width: 1500px;
  margin: auto;
}
.eyebrow {
  color: var(--cyan);
  letter-spacing: .2em;
  font-weight: 800;
  font-size: 12px;
  margin: 0 0 18px;
}
h1, h2, h3 { margin-top: 0; }
h1 {
  font-size: clamp(54px, 7vw, 108px);
  line-height: .92;
  letter-spacing: -.055em;
  margin-bottom: 28px;
}
h1 span {
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(98,229,255,.72);
  text-shadow: 0 0 40px rgba(98,229,255,.08);
}
.hero-text {
  max-width: 660px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
  color: var(--silver);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: .2s ease;
}
.btn.primary { background: var(--cyan); color: #031116; border-color: var(--cyan); }
.btn.secondary { background: rgba(255,255,255,.02); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(98,229,255,.12); }
.signature { color: var(--muted); margin-top: 22px; font-size: 14px; }

.hero-orb {
  position: relative;
  justify-self: center;
  width: min(38vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(98,229,255,.25);
  background: radial-gradient(circle, rgba(98,229,255,.12), rgba(9,27,36,.35) 52%, rgba(6,16,23,.8));
  box-shadow: 0 0 120px rgba(22,191,232,.09), inset 0 0 70px rgba(98,229,255,.06);
}
.face {
  position: absolute; width: 42%; height: 46%; left: 29%; top: 28%;
  border: 1px solid rgba(220,232,237,.55); border-radius: 48% 48% 52% 52%;
  background: linear-gradient(150deg, rgba(220,232,237,.16), rgba(255,255,255,.02));
  box-shadow: inset 0 0 45px rgba(98,229,255,.07);
}
.ear {
  position: absolute; width: 25%; height: 25%; top: 15%; border-radius: 50%;
  border: 1px solid rgba(98,229,255,.58);
  box-shadow: inset 0 0 24px rgba(98,229,255,.1), 0 0 30px rgba(98,229,255,.06);
}
.ear-left { left: 19%; }
.ear-right { right: 19%; }
.eyes { position: absolute; display: flex; gap: 26%; width: 70%; left: 15%; top: 32%; }
.eyes span { width: 37%; aspect-ratio: 1.6; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 26px rgba(98,229,255,.72); }
.nose { position: absolute; width: 12%; aspect-ratio: 1; border-radius: 50%; left: 44%; top: 59%; background: #e5a5b7; box-shadow: 0 0 16px rgba(229,165,183,.35); }
.core { position: absolute; width: 18%; aspect-ratio: 1; left: 41%; bottom: -29%; border-radius: 50%; border: 2px solid var(--cyan); box-shadow: 0 0 34px rgba(98,229,255,.55), inset 0 0 20px rgba(98,229,255,.2); }
.orbit { position: absolute; inset: 8%; border-radius: 50%; border: 1px dashed rgba(98,229,255,.18); animation: spin 22s linear infinite; }
.orbit-two { inset: 17%; animation-direction: reverse; animation-duration: 31s; }
@keyframes spin { to { transform: rotate(360deg); } }

.section {
  max-width: 1350px;
  margin: auto;
  padding: 90px clamp(22px, 7vw, 80px);
}
.section-heading { max-width: 760px; margin-bottom: 38px; }
h2 { font-size: clamp(38px, 5vw, 70px); line-height: 1; letter-spacing: -.04em; }
.section-heading > p:last-child, .about p { color: var(--muted); line-height: 1.7; font-size: 17px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13,35,45,.8), rgba(7,20,28,.62));
  box-shadow: var(--shadow);
}
.card-code { color: var(--cyan); font-size: 11px; letter-spacing: .18em; }
.card h3 { margin: 54px 0 12px; font-size: 25px; }
.card p { color: var(--muted); line-height: 1.6; margin-bottom: 0; }

.channels { padding-top: 70px; }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.channel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13,35,45,.48);
  display: flex; flex-direction: column; gap: 5px;
  transition: .2s ease;
}
.channel strong { font-size: 18px; }
.channel span { color: var(--muted); font-size: 13px; }
.channel:hover { border-color: rgba(98,229,255,.65); transform: translateY(-3px); }
.channel.unconfigured { opacity: .42; cursor: default; }
.link-note { color: var(--muted); font-size: 13px; margin-top: 14px; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

footer {
  max-width: 1350px;
  margin: auto;
  padding: 36px clamp(22px, 7vw, 80px) 60px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}
footer .brand { color: var(--text); }
.domain { color: var(--cyan); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-orb { width: min(78vw, 430px); margin: 30px auto 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  nav { display: none; }
  .hero { padding-top: 72px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .cards, .channel-grid, .about { grid-template-columns: 1fr; }
  .about { gap: 20px; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}


/* === Social-first homepage V2 === */
.social-hero {
  min-height: calc(100vh - 72px);
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(52px, 7vw, 92px);
}

.social-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.social-title {
  font-size: clamp(54px, 7vw, 100px);
  line-height: .92;
  letter-spacing: -.055em;
  margin: 0 0 24px;
}

.social-title span {
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(98,229,255,.72);
  text-shadow: 0 0 40px rgba(98,229,255,.08);
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.channel-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13,35,45,.78), rgba(7,20,28,.62));
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 142px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.channel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(98,229,255,.56);
  box-shadow: 0 18px 60px rgba(0,0,0,.36);
}

.channel-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.channel-main > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.channel-main strong {
  font-size: 21px;
  color: var(--text);
}

.handle {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .03em;
}

.channel-desc {
  color: var(--muted);
  font-size: 14px;
}

.social-count {
  margin-top: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.follow-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 12px 17px;
  border-radius: 999px;
  border: 1px solid rgba(98,229,255,.48);
  color: var(--cyan);
  background: rgba(98,229,255,.06);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.follow-btn:hover {
  transform: translateY(-2px);
  background: var(--cyan);
  color: #031116;
}

.follow-btn.subscribe {
  background: var(--cyan);
  color: #031116;
  border-color: var(--cyan);
}

.follow-btn.subscribe:hover {
  box-shadow: 0 10px 30px rgba(98,229,255,.16);
}

.consent-note {
  color: var(--muted);
  font-size: 12px;
  margin: 18px 0 0;
}

@media (max-width: 980px) {
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .social-hero { min-height: auto; padding-top: 58px; }
  .social-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 126px; }
  .social-title { font-size: clamp(48px, 15vw, 70px); }
}

@media (max-width: 390px) {
  .channel-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .follow-btn {
    width: 100%;
  }
}
