/* =========================================================
   Planet Arcadia — Global Stylesheet
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --c-bg:          #0a0a0f;
  --c-bg-alt:      #0d0d14;
  --c-bg-elev:     #12121c;
  --c-blue:        #00aaff;
  --c-blue-dim:    #0077b3;
  --c-blue-glow:   rgba(0, 170, 255, 0.4);
  --c-ice:         #e8f4ff;
  --c-steel:       #4a5568;
  --c-steel-lt:    #6b7687;
  --c-line:        rgba(232, 244, 255, 0.08);
  --c-line-strong: rgba(232, 244, 255, 0.16);

  --f-ui:   'Inter', system-ui, -apple-system, sans-serif;
  --f-head: 'Space Grotesk', 'Inter', sans-serif;

  --radius:    8px;
  --radius-lg: 14px;

  --dur:  200ms;
  --ease: cubic-bezier(.2,.7,.2,1);

  --nav-h: 68px;

  --max-w:   1280px;
  --max-read: 720px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ice);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input,select,textarea { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 {
  font-family: var(--f-head);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 300; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { margin: 0 0 1em; color: var(--c-ice); }
.text-muted { color: var(--c-steel-lt); }
.eyebrow {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--c-blue);
  font-weight: 500;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(64px, 10vw, 140px) 0; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3,.grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--c-blue);
  color: var(--c-bg);
}
.btn-primary:hover {
  background: var(--c-ice);
  box-shadow: 0 0 32px var(--c-blue-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-ice);
  border-color: var(--c-line-strong);
}
.btn-ghost:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
}
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--c-line);
  transition: background var(--dur) var(--ease);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 760px) {
  .nav-inner { padding: 0 24px; }
}
.nav-logo {
  font-family: var(--f-head);
  font-weight: 300;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--c-ice);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--dur) var(--ease);
}
.nav-logo:hover { color: var(--c-blue); }
.nav-mark {
  width: 34px; height: 34px;
  color: var(--c-blue);
  display: inline-block;
  filter: drop-shadow(0 0 10px var(--c-blue-glow));
  transition: transform var(--dur) var(--ease);
}
.nav-mark svg { width: 100%; height: 100%; }
.nav-logo:hover .nav-mark { transform: rotate(-6deg) scale(1.05); }
@media (max-width: 420px) {
  .nav-word { display: none; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--c-ice);
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--c-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--c-blue); font-weight: 600; }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--c-ice);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 24px; }
.nav-burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.nav-mobile.open { display: flex; opacity: 1; }
.nav-mobile a {
  font-family: var(--f-head);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--c-ice);
}
.nav-mobile a:hover { color: var(--c-blue); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}

/* ---------- Page shell ---------- */
main { padding-top: var(--nav-h); }
.page-header {
  padding: clamp(70px, 10vw, 120px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.page-header h1 {
  font-family: var(--f-head);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-header .subtitle {
  color: var(--c-steel-lt);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Cards ---------- */
.card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-blue);
  box-shadow: 0 20px 40px -20px var(--c-blue-glow);
}

.video-card { cursor: pointer; display: flex; flex-direction: column; }
.video-card .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--c-bg-elev);
  overflow: hidden;
}
.video-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.video-card:hover .thumb img { transform: scale(1.05); }
.video-card .duration {
  position: absolute;
  right: 10px; bottom: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--c-ice);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 7px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}
.video-card .play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(to top, rgba(10,10,15,0.5), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.video-card:hover .play-overlay { opacity: 1; }
.video-card .play-overlay svg {
  width: 54px; height: 54px;
  filter: drop-shadow(0 0 16px var(--c-blue-glow));
}
.video-card .body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.video-card h3 {
  font-family: var(--f-ui);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--c-ice);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card .meta {
  color: var(--c-steel-lt);
  font-size: 0.82rem;
  margin-top: auto;
  display: flex;
  gap: 12px;
}

/* ---------- Filter tabs ---------- */
.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 0 40px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 48px;
}
.filter-tabs button {
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--f-head);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--c-steel-lt);
  border: 1px solid transparent;
  transition: all var(--dur) var(--ease);
}
.filter-tabs button:hover { color: var(--c-ice); }
.filter-tabs button.active {
  color: var(--c-blue);
  border-color: var(--c-blue);
  background: rgba(0, 170, 255, 0.05);
}

/* ---------- Load more ---------- */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}

/* ---------- Modal (video player) ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 10, 0.92);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.modal.open { display: flex; opacity: 1; }
.modal-inner {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px var(--c-blue-glow);
}
.modal-inner iframe {
  width: 100%; height: 100%;
  border: 0;
}
.modal-close {
  position: absolute;
  top: -48px; right: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  color: var(--c-ice);
  border: 1px solid var(--c-line-strong);
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
}
.modal-close:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
}

/* ---------- LIVE badge ---------- */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: #ff2e4d;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border-radius: 4px;
  text-transform: uppercase;
}
.live-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.3; transform: scale(1.3); }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--c-line);
  padding: 48px 0 32px;
  margin-top: 80px;
  text-align: center;
  color: var(--c-steel-lt);
  font-size: 0.85rem;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
}
.footer-socials a:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: translateY(-2px);
}
.footer-socials svg { width: 16px; height: 16px; }

/* =========================================================
   HOME PAGE
   ========================================================= */
.home main { padding-top: 0; }

/* Fixed SVG layer (Airbus disintegration) */
#airbus-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}
#airbus-layer svg {
  width: 100%; height: 100%;
}
.airbus-part { transform-box: fill-box; transform-origin: center; }

/* Content sits above the SVG layer */
.home-content { position: relative; z-index: 2; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 60px;
  text-align: center;
  position: relative;
}
.hero-title {
  font-family: var(--f-head);
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: clamp(2.1rem, 6.2vw, 5rem);
  color: var(--c-ice);
  margin: 0;
  line-height: 1.05;
  max-width: 1100px;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  animation: heroWordIn 0.9s var(--ease) forwards;
  margin-right: 0.22em;
}
.hero-word:nth-child(1) { animation-delay: 0.25s; }
.hero-word:nth-child(2) { animation-delay: 0.50s; }
.hero-word:nth-child(3) { animation-delay: 0.75s; }
.hero-word:nth-child(4) { animation-delay: 1.00s; }
.hero-word:nth-child(5) { animation-delay: 1.25s; }
.hero-word-accent {
  background: linear-gradient(120deg, var(--c-ice) 0%, var(--c-blue) 50%, var(--c-ice) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-name: heroWordIn, heroShine;
  animation-duration: 0.9s, 4s;
  animation-delay: 1.25s, 2s;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
  animation-timing-function: var(--ease), linear;
}
@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-dots {
  display: inline-block;
  letter-spacing: 0.05em;
  color: var(--c-blue);
}
.hero-dots span {
  display: inline-block;
  opacity: 0;
  animation: dotPop 2.2s ease-in-out infinite;
}
.hero-dots span:nth-child(1) { animation-delay: 1.9s; }
.hero-dots span:nth-child(2) { animation-delay: 2.1s; }
.hero-dots span:nth-child(3) { animation-delay: 2.3s; }
@keyframes dotPop {
  0%, 80%, 100% { opacity: 0; transform: translateY(4px); }
  20%, 50%      { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-family: var(--f-head);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  color: var(--c-blue);
  margin-top: 28px;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease) 1.6s forwards;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-head);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--c-steel-lt);
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease) 1.2s forwards, bob 2.5s ease-in-out infinite 2.4s;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--c-blue), transparent);
  margin: 10px auto 0;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%,100% { transform: translate(-50%, 0); }
  50%     { transform: translate(-50%, 8px); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* About stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 40px;
  background: rgba(13, 13, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; gap: 18px; padding: 28px; }
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--c-blue);
  text-shadow: 0 0 30px var(--c-blue-glow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-family: var(--f-head);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-steel-lt);
  margin-top: 10px;
}

/* Two-stat duo — replaces the 3-up stats row. Cockpit-gauge vibe. */
.stats-duo {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 56px auto 0;
  max-width: 760px;
  padding: 28px clamp(24px, 4vw, 48px);
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(0,170,255,0.06), transparent 55%),
    linear-gradient(180deg, rgba(18,20,30,0.7), rgba(10,12,20,0.5));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,170,255,0.18);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 30px 60px -30px rgba(0,170,255,0.35);
  position: relative;
  overflow: hidden;
}
.stats-duo::before,
.stats-duo::after {
  content: "";
  position: absolute;
  top: 14px; bottom: 14px;
  width: 14px;
  pointer-events: none;
}
.stats-duo::before {
  left: 14px;
  border-left: 1px solid rgba(0,170,255,0.3);
  border-top: 1px solid rgba(0,170,255,0.3);
  border-bottom: 1px solid rgba(0,170,255,0.3);
  border-radius: 4px 0 0 4px;
}
.stats-duo::after {
  right: 14px;
  border-right: 1px solid rgba(0,170,255,0.3);
  border-top: 1px solid rgba(0,170,255,0.3);
  border-bottom: 1px solid rgba(0,170,255,0.3);
  border-radius: 0 4px 4px 0;
}

.stat-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 24px;
}
.stat-pill-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,170,255,0.18), rgba(0,170,255,0.02));
  border: 1px solid rgba(0,170,255,0.4);
  color: var(--c-blue);
  flex-shrink: 0;
}
.stat-pill-icon svg { width: 22px; height: 22px; }

.stat-pill-body { text-align: left; }
.stat-pill-num {
  font-family: var(--f-head);
  font-weight: 300;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1;
  color: var(--c-blue);
  text-shadow: 0 0 26px var(--c-blue-glow);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.stat-pill-label {
  font-family: var(--f-head);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-steel-lt);
  margin-top: 6px;
}

.stat-pill-divider {
  width: 1px;
  align-self: stretch;
  margin: 8px 0;
  background: linear-gradient(to bottom, transparent, rgba(0,170,255,0.4), transparent);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-duo { flex-direction: column; padding: 22px; }
  .stat-pill { padding: 14px 8px; }
  .stat-pill-divider { width: 60%; height: 1px; margin: 4px auto; background: linear-gradient(to right, transparent, rgba(0,170,255,0.4), transparent); }
  .stats-duo::before, .stats-duo::after { display: none; }
}

/* Latest videos on home */
.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.home-section-head h2 { margin: 0; }

/* Blog preview card */
.blog-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.blog-card:hover {
  border-color: var(--c-blue);
  transform: translateY(-4px);
}
.blog-card .category {
  font-family: var(--f-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.blog-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  margin: 0;
}
.blog-card .excerpt { color: var(--c-steel-lt); font-size: 0.92rem; margin: 0; }
.blog-card .meta {
  color: var(--c-steel);
  font-size: 0.8rem;
  margin-top: auto;
  display: flex;
  gap: 14px;
}

/* Live section */
.live-feature {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.live-feature .info { flex: 1; min-width: 240px; }
.live-feature .embed {
  flex: 1.4;
  min-width: 300px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-bg-elev);
}
.live-feature iframe { width: 100%; height: 100%; border: 0; }
.countdown {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.countdown > div {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  min-width: 70px;
}
.countdown .num {
  font-family: var(--f-head);
  font-size: 1.6rem;
  color: var(--c-blue);
  font-variant-numeric: tabular-nums;
}
.countdown .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-steel-lt);
  margin-top: 4px;
}

/* =========================================================
   TOP 10 MOST WATCHED (horizontal carousel)
   ========================================================= */
.top10-section { padding-top: clamp(40px, 6vw, 70px); }

/* Show ~3 cards per viewport. Each card = number peeks left of a 16:9 thumbnail.
   grid-auto-columns divides the scroller into 3 equal tracks. */
.top10-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding: 48px 0 28px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.top10-scroller::-webkit-scrollbar { display: none; }

.top10-card {
  position: relative;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  padding-left: 42px; /* room for number to peek out */
  transition: transform var(--dur) var(--ease);
}
.top10-card:hover { transform: translateY(-4px); }

.top10-num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(180px, 20vw, 280px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 170, 255, 0.45);
  text-shadow: 0 0 40px rgba(0, 170, 255, 0.08);
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 1;
  margin-right: -42px;       /* number overlaps ~42px under thumbnail */
  margin-left: -24px;        /* and pokes ~24px out to the left */
  align-self: end;
  margin-bottom: -10px;
  transition: -webkit-text-stroke-color var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.top10-card:hover .top10-num {
  -webkit-text-stroke-color: rgba(0, 170, 255, 0.85);
  color: rgba(0, 170, 255, 0.08);
  transform: translateX(-4px);
}
/* Double-digit 10 gets tighter spacing */
.top10-card:nth-child(10) .top10-num {
  letter-spacing: -0.11em;
  font-size: clamp(140px, 15vw, 220px);
  margin-left: -32px;
  margin-right: -28px;
}

.top10-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-elev);
  z-index: 2;
  border: 1px solid var(--c-line);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.top10-card:hover .top10-thumb {
  border-color: var(--c-blue);
  box-shadow: 0 24px 50px -20px var(--c-blue-glow);
}
.top10-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.top10-card:hover .top10-thumb img { transform: scale(1.06); }
.top10-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 54px 16px 16px;
  background: linear-gradient(to top, rgba(10,10,15,0.97) 20%, rgba(10,10,15,0.75) 60%, transparent);
  color: var(--c-ice);
}
.top10-views {
  font-family: var(--f-head);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 4px;
}
.top10-name {
  font-family: var(--f-ui);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top10-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 16px 0 0;
  flex-wrap: wrap;
}
.top10-dot {
  width: 22px; height: 3px;
  background: var(--c-line-strong);
  border-radius: 2px;
  cursor: pointer;
  transition: background 200ms ease, width 200ms ease;
}
.top10-dot.active { background: var(--c-blue); width: 36px; }

/* Tablet: show 2 cards */
@media (max-width: 900px) {
  .top10-scroller { grid-auto-columns: calc((100% - 20px) / 2); gap: 16px; }
  .top10-num { font-size: clamp(150px, 16vw, 220px); }
}
/* Mobile: show 1 card */
@media (max-width: 600px) {
  .top10-scroller { grid-auto-columns: calc(100% - 48px); gap: 14px; padding: 36px 0 24px; }
  .top10-card { padding-left: 36px; }
  .top10-num {
    font-size: clamp(160px, 42vw, 200px);
    margin-left: -18px;
    margin-right: -36px;
  }
  .top10-card:nth-child(10) .top10-num {
    font-size: clamp(130px, 34vw, 170px);
    margin-left: -24px;
    margin-right: -24px;
  }
}

/* =========================================================
   COMMUNITY BAND (home)
   ========================================================= */
.community-band {
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.04), rgba(13, 13, 20, 0.6));
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) {
  .community-band { grid-template-columns: 1fr; padding: 32px; }
}
.community-copy h2 { margin: 0; }
.community-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.community-link {
  --platform: var(--c-blue);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-ice);
  font-family: var(--f-head);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.community-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--platform);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  z-index: 0;
}
.community-link > * { position: relative; z-index: 1; }
.community-link:hover {
  border-color: var(--platform);
  transform: translateX(4px);
  box-shadow: 0 10px 30px -15px var(--platform);
}
.community-link:hover::before { opacity: 0.08; }
.community-icon {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  color: var(--platform);
  flex-shrink: 0;
}
.community-icon svg { width: 22px; height: 22px; }
.community-label { flex: 1; font-size: 0.95rem; }
.community-arrow {
  color: var(--c-steel-lt);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.community-link:hover .community-arrow { transform: translateX(4px); color: var(--platform); }

/* Live page: multi-platform row */
.platforms-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 700px) { .platforms-row { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   BLOG / POST
   ========================================================= */
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  transition: border-color var(--dur) var(--ease);
}
.featured-post:hover { border-color: var(--c-blue); }
.featured-post .thumb { aspect-ratio: 16/10; background: var(--c-bg-elev); overflow: hidden; }
.featured-post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.featured-post .body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.featured-post h2 { font-family: var(--f-head); margin: 10px 0 14px; }
@media (max-width: 800px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .body { padding: 28px; }
}

/* Post reading layout */
.post-wrap {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
@media (max-width: 900px) {
  .post-wrap { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; position: static !important; }
}
.post-article {
  max-width: var(--max-read);
  margin: 0 auto;
  width: 100%;
}
.post-hero {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--c-bg-alt);
}
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-article .category {
  font-family: var(--f-head);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 12px;
}
.post-article h1 {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.post-byline {
  color: var(--c-steel-lt);
  font-size: 0.9rem;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.post-article h2 {
  font-family: var(--f-head);
  font-size: 1.6rem;
  margin: 40px 0 16px;
  font-weight: 500;
}
.post-article h3 {
  font-family: var(--f-head);
  font-size: 1.25rem;
  margin: 32px 0 12px;
}
.post-article p { font-size: 1.05rem; line-height: 1.75; color: var(--c-ice); }
.post-article ul { padding-left: 1.2em; color: var(--c-ice); }
.post-article blockquote {
  border-left: 3px solid var(--c-blue);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--c-ice);
  font-size: 1.1rem;
}
.post-article img {
  width: 100%;
  border-radius: var(--radius);
  margin: 28px 0;
}
.post-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
  font-size: 0.9rem;
}
.post-sidebar h4 {
  font-family: var(--f-head);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-steel-lt);
  margin: 0 0 14px;
}
.toc { list-style: none; padding: 0; margin: 0 0 36px; }
.toc li { margin-bottom: 8px; }
.toc a {
  color: var(--c-steel-lt);
  transition: color var(--dur) var(--ease);
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
}
.toc a:hover, .toc a.active {
  color: var(--c-blue);
  border-left-color: var(--c-blue);
}
.related-post {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--c-line);
}
.related-post:hover { color: var(--c-blue); }
.related-post .t { font-weight: 500; margin-bottom: 4px; }
.related-post .d { font-size: 0.75rem; color: var(--c-steel); }

.post-share {
  display: flex;
  gap: 10px;
  margin: 48px 0 32px;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  align-items: center;
}
.post-share span {
  font-family: var(--f-head);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-steel-lt);
  margin-right: auto;
}
.share-btn {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
}
.share-btn:hover { border-color: var(--c-blue); color: var(--c-blue); }

/* =========================================================
   LIVE PAGE
   ========================================================= */
.schedule-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 140px 140px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row .day {
  font-family: var(--f-head);
  font-weight: 500;
  color: var(--c-ice);
  letter-spacing: 0.05em;
}
.schedule-row .time {
  color: var(--c-blue);
  font-variant-numeric: tabular-nums;
  font-family: var(--f-head);
}
.schedule-row .topic { color: var(--c-steel-lt); }
@media (max-width: 600px) {
  .schedule-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--f-head);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-steel-lt);
}
.field input,
.field select,
.field textarea {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--c-ice);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  font-family: var(--f-ui);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(0,170,255,0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.contact-meta {
  margin-top: 60px;
  text-align: center;
  color: var(--c-steel-lt);
}
.contact-email {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 1.2rem;
  color: var(--c-blue);
  letter-spacing: 0.05em;
  margin: 14px 0;
  padding: 10px 22px;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  transition: all var(--dur) var(--ease);
}
.contact-email:hover {
  border-color: var(--c-blue);
  background: rgba(0,170,255,0.06);
}

/* =========================================================
   Utilities
   ========================================================= */
.loading {
  display: grid;
  place-items: center;
  padding: 60px 0;
  color: var(--c-steel-lt);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.loading::before {
  content: '';
  width: 28px; height: 28px;
  border: 2px solid var(--c-line);
  border-top-color: var(--c-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.error-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--c-steel-lt);
  border: 1px dashed var(--c-line);
  border-radius: var(--radius-lg);
}
.error-state h3 { color: var(--c-ice); font-family: var(--f-head); }
.empty { text-align: center; color: var(--c-steel-lt); padding: 40px 0; }
.hidden { display: none !important; }
.center { text-align: center; }
.mt-lg { margin-top: 48px; }

/* =========================================================
   MY SETUP — floating FAB + 3D modal
   ========================================================= */
.setup-fab {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border: 1px solid rgba(0, 170, 255, 0.35);
  border-radius: 999px;
  background:
    radial-gradient(120% 180% at 0% 0%, rgba(0,170,255,0.22), rgba(0,170,255,0) 55%),
    linear-gradient(180deg, rgba(18,20,30,0.92), rgba(10,12,20,0.92));
  color: var(--c-ice);
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 16px 36px -18px rgba(0, 170, 255, 0.7),
    0 8px 26px -10px rgba(0,0,0,0.55);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
  animation: setupFloat 5.5s ease-in-out infinite;
}
.setup-fab:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(0, 170, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(0,170,255,0.15) inset,
    0 22px 44px -16px rgba(0, 170, 255, 0.9),
    0 10px 30px -8px rgba(0,0,0,0.6);
}
.setup-fab:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }

.setup-fab-icon {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,170,255,0.18), rgba(0,170,255,0.02));
  color: var(--c-blue);
  border: 1px solid rgba(0,170,255,0.4);
}
.setup-fab-icon svg { width: 16px; height: 16px; }
.setup-fab-label { position: relative; z-index: 2; }

.setup-fab-ring {
  position: absolute; inset: -6px; border-radius: 999px;
  border: 1px solid rgba(0,170,255,0.25);
  opacity: 0;
  animation: setupPulse 3.2s ease-out infinite;
  pointer-events: none;
}
.setup-fab-glow {
  position: absolute; inset: -14px; border-radius: 999px;
  background: radial-gradient(closest-side, rgba(0,170,255,0.35), rgba(0,170,255,0) 72%);
  filter: blur(4px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

@keyframes setupFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes setupPulse {
  0%   { opacity: 0.8; transform: scale(0.92); }
  70%  { opacity: 0;   transform: scale(1.25); }
  100% { opacity: 0;   transform: scale(1.25); }
}

/* ---- Overlay + modal ---- */
.setup-overlay {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(0,170,255,0.08), rgba(5,6,10,0.72) 60%), rgba(5,6,10,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  perspective: 1600px;
  transition: opacity 340ms var(--ease);
}
.setup-overlay.is-open { opacity: 1; pointer-events: auto; }

.setup-modal {
  position: relative;
  width: min(1040px, 96vw);
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px clamp(22px, 3.2vw, 46px) 30px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(22,24,34,0.98), rgba(12,14,22,0.98));
  border: 1px solid rgba(0,170,255,0.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 60px 120px -40px rgba(0,170,255,0.35),
    0 30px 80px -20px rgba(0,0,0,0.7);
  transform: perspective(1400px) rotateX(12deg) translateY(40px) scale(0.94);
  opacity: 0;
  transition: transform 520ms cubic-bezier(.16,.8,.24,1), opacity 420ms var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.setup-overlay.is-open .setup-modal {
  transform: perspective(1400px) rotateX(0) translateY(0) scale(1);
  opacity: 1;
}
.setup-modal::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0,170,255,0.12), transparent 40%),
    linear-gradient(315deg, rgba(0,170,255,0.08), transparent 45%);
  mix-blend-mode: screen;
}

.setup-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  color: var(--c-ice);
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.setup-close:hover { background: rgba(0,170,255,0.1); border-color: var(--c-blue); transform: rotate(90deg); }
.setup-close svg { width: 16px; height: 16px; }

.setup-head { text-align: center; margin-bottom: 28px; }
.setup-head h2 {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 8px 0 6px;
  letter-spacing: -0.01em;
}
.setup-sub { color: var(--c-steel-lt); max-width: 580px; margin: 0 auto; font-size: 0.92rem; }

.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.setup-card {
  padding: 20px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.setup-card:hover {
  border-color: rgba(0,170,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -24px rgba(0,170,255,0.6);
}
.setup-card header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--c-line);
}
.setup-card-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(0,170,255,0.12);
  color: var(--c-blue);
  font-size: 1rem;
}
.setup-card h3 {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  color: var(--c-ice);
}
.setup-card dl { margin: 0; }
.setup-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.setup-row:last-child { border-bottom: none; }
.setup-row dt {
  font-family: var(--f-head);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-steel-lt);
  align-self: center;
}
.setup-row dd {
  margin: 0;
  font-family: var(--f-ui);
  font-size: 0.9rem;
  color: var(--c-ice);
  line-height: 1.35;
}

.setup-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
  text-align: center;
  font-size: 0.78rem;
}

@media (max-width: 680px) {
  .setup-fab { right: 14px; bottom: 16px; padding: 10px 14px 10px 12px; font-size: 0.72rem; }
  .setup-fab-icon { width: 26px; height: 26px; }
  .setup-row { grid-template-columns: 110px 1fr; }
}
