/* =========================================================
   Sky Hub — main.css
   Zachowuje 1:1 oryginalna paleta/typografie ze starego index.html:
   tlo #000000, pasek dolny #02040c, akcent #9fd8ff / #eaf6ff,
   CTA #00c853, podpisy kursywa Georgia. Rozszerzone o pelna
   responsywnosc (telefon / tablet / laptop / desktop) i nowe
   sekcje (nav, moduly, demo, FAQ, stopka).
   ========================================================= */

:root {
  --bg-black: #000000;
  --bg-footer: #02040c;
  --accent-blue: #9fd8ff;
  --accent-blue-light: #eaf6ff;
  --cta-green: #00c853;
  --cta-green-text: #001a08;
  --text-white: #ffffff;
  --border-subtle: #223;
  --max-content: 900px;
  --nav-height: 64px;
  --accent-amber: #f2a900;
  --accent-amber-hi: #ffba07;
  --accent-amber-text: #241400;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--bg-black);
  color: var(--text-white);
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

a { color: var(--accent-blue); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
img { display: block; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Top navigation ---------- */
#site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(159, 216, 255, 0.15);
}

#site-header .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 16px;
  color: var(--text-white);
  letter-spacing: 0.5px;
}
.nav-logo img { height: 28px; width: auto; }

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--accent-blue-light);
  font-size: 14px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue-light);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 20px;
  cursor: pointer;
}

/* "Try it free" - patrz config.DEMO_SIGNUP_CTA_ENABLED, domyslnie wylaczony */
.nav-cta {
  display: inline-block;
  background: linear-gradient(180deg, var(--accent-amber-hi), var(--accent-amber));
  color: var(--accent-amber-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 8px 16px;
  border-radius: 999px;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ---------- Hero (identyczne jak w oryginale) ---------- */
#hero {
  width: 100%;
  height: 62vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px;
}
#hero img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---------- Modules / product rotator ---------- */
#modules-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  box-sizing: border-box;
}

#modules-section h2 {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: var(--text-white);
  margin: 0 0 8px;
}

#modules-section .modules-sub {
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: var(--accent-blue);
  font-size: 14px;
  margin: 0 0 28px;
}

.module-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.module-card {
  display: block;
  flex: 0 1 calc(33.333% - 12px);
  min-width: 220px;
  background: #0a0e18;
  border: 1px solid rgba(159, 216, 255, 0.18);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.module-card.is-live {
  border-color: rgba(0, 200, 83, 0.5);
}
.module-card:hover { transform: translateY(-3px); border-color: var(--accent-blue); text-decoration: none; }
.module-card.is-linked { cursor: pointer; }

.module-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.module-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--text-white);
}

.module-card p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #aebfcf;
  line-height: 1.5;
}

.module-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.module-badge.live { background: rgba(0, 200, 83, 0.15); color: var(--cta-green); }
.module-badge.coming-soon { background: rgba(159, 216, 255, 0.12); color: var(--accent-blue); }

/* ---------- Demo (auto-cycling screenshots) ---------- */
#demo-section {
  width: 100%;
  /* Etap 4 - szersze niz reszta strony (var(--max-content) = 900px) TYLKO tutaj, zeby moduly
     demo (radar, wkrotce ISS itd.) mialy wiecej miejsca na ekranie. Od wprowadzenia silnika
     "scale-to-fit" (2026-08-23, patrz demo_radar.html + scale-to-fit.js) nachodzenie
     tytulu/HUD juz nie grozi przy ZADNEJ szerokosci >=700px - kazdy modul skaluje sie
     proporcjonalnie ze swojej stalej sceny 1920x1200. 1100px to teraz czysto estetyczny
     wybor szerokosci sekcji demo na stronie, nie wymog techniczny jak wczesniej. */
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#demo-section h2 {
  text-align: center;
  font-size: 22px;
  margin: 0 0 24px;
}

.demo-carousel {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  background: #050810;
}

.demo-slide {
  display: none;
  width: 100%;
}
.demo-slide.is-active { display: block; }

.demo-slide img { width: 100%; height: auto; display: block; }

/* Etap 4 - slajdy demo (radar, wkrotce ISS itd.) to <iframe> zamiast statycznych zdjec,
   zasilane danymi na zywo przez MQTT. 16:10 (zamiast pierwotnego 2.13:1, a od "scale-to-fit"
   tez zamiast wczesniejszego 16:9) - dokladnie proporcja stalej sceny 1920x1200, na ktorej
   silnik scale-to-fit renderuje kazdy modul, wiec na PC/tablecie/TV nie ma prawie wcale
   "pustych pasow" (letterboxingu) z boku/gory. Na waskich ekranach (telefon) kazdy modul sam
   przechodzi na wlasny uklad kolumnowy (patrz media query w demo_radar.html), wiec tutaj tez
   dajemy mu wtedy proporcje "na wysokosc" zamiast "na szerokosc". */
.demo-slide iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border: 0;
}

@media (max-width: 700px) {
  .demo-slide iframe { aspect-ratio: 3 / 4; }
}

/* ---------- Live radar widget (real ADS-B data) ---------- */
.radar-live {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #030509;
}
.radar-live canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.radar-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 200, 83, 0.4);
  color: var(--cta-green);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
}
.radar-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta-green);
  box-shadow: 0 0 6px var(--cta-green);
  animation: radar-pulse 1.4s infinite ease-in-out;
}
@keyframes radar-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.radar-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(159, 216, 255, 0.25);
  color: var(--accent-blue-light);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}

.radar-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(5, 8, 16, 0.95);
  border: 1px solid rgba(159, 216, 255, 0.35);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--accent-blue-light);
  white-space: nowrap;
  transform: translate(-50%, -110%);
  z-index: 5;
}
.radar-tooltip strong { color: var(--text-white); }

.demo-caption {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: var(--accent-blue);
  font-size: 15px;
  margin: 14px 0 0;
  text-align: center;
}

.demo-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.demo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(159, 216, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
}
.demo-dot.is-active { background: var(--accent-blue); }

/* ---------- FAQ ---------- */
#faq-section {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 10px 20px 40px;
  box-sizing: border-box;
}

#faq-section h2 {
  text-align: center;
  font-size: 22px;
  margin: 0 0 24px;
}

.faq-item {
  border-bottom: 1px solid rgba(159, 216, 255, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 15px;
  font-weight: bold;
  text-align: left;
  padding: 16px 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--accent-blue);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: #aebfcf;
  font-size: 14px;
  line-height: 1.6;
}
.faq-answer-inner { padding: 0 4px 16px; }
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ---------- Bottom bar / notify (identyczne jak w oryginale) ---------- */
#bottom-bar {
  width: 100%;
  background: var(--bg-footer);
  padding: 24px 20px 34px;
  text-align: center;
  box-sizing: border-box;
}
#tagline {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: var(--accent-blue-light);
  font-size: 15px;
  margin: 0 0 6px;
}
#teaser {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: var(--accent-blue);
  font-size: 13px;
  margin: 0 0 12px;
}
#notify-heading {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-white);
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 8px;
}
#notify-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
#notify-form input[type="email"] {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #345;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  width: 220px;
  max-width: 60vw;
}
#notify-form button {
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  background: var(--cta-green);
  color: var(--cta-green-text);
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}
#notify-form button:hover { filter: brightness(1.1); }

#notify-message {
  margin-top: 10px;
  font-size: 13px;
  color: var(--accent-blue-light);
}

/* honeypot - ukryty przed ludzmi, widoczny dla botow wypelniajacych kazde pole */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* ---------- Footer ---------- */
#site-footer {
  width: 100%;
  background: var(--bg-footer);
  border-top: 1px solid rgba(159, 216, 255, 0.1);
  padding: 24px 20px;
  box-sizing: border-box;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(159, 216, 255, 0.08);
  color: var(--accent-blue-light);
}
.footer-social a:hover { background: rgba(159, 216, 255, 0.2); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-meta {
  font-size: 12px;
  color: #6a7a8c;
  text-align: center;
}
.footer-meta a { color: #8fb3cc; }

/* ---------- Static content pages (About / Privacy / Terms) ---------- */
.static-page {
  width: 100%;
  max-width: var(--max-content);
  padding: 40px 20px 60px;
  box-sizing: border-box;
  margin: 0 auto;
}

.static-page h1 {
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--text-white);
}

.static-page .static-updated {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: var(--accent-blue);
  font-size: 13px;
  margin: 0 0 30px;
}

.static-page h2 {
  font-size: 18px;
  color: var(--accent-blue-light);
  margin: 30px 0 10px;
}

.static-page p,
.static-page li {
  font-size: 14.5px;
  line-height: 1.7;
  color: #cdd8e3;
  margin: 0 0 14px;
}

.static-page ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

.static-page a { color: var(--accent-blue); }

.static-page .static-contact {
  background: #0a0e18;
  border: 1px solid rgba(159, 216, 255, 0.18);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 24px;
}

/* ---------- Product detail page (e.g. Sky Hub Matrix) ---------- */
.product-status-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  background: rgba(159, 216, 255, 0.12);
  color: var(--accent-blue);
  margin-bottom: 18px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 18px 0 26px;
}

.spec-item {
  background: #0a0e18;
  border: 1px solid rgba(159, 216, 255, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
}
.spec-item .spec-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7d93a8;
  margin-bottom: 4px;
}
.spec-item .spec-value {
  font-size: 14px;
  color: var(--text-white);
}

/* =========================================================
   Responsywnosc
   ========================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .module-card { min-width: 180px; }
}

/* Telefon */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  #site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 16px 20px;
    gap: 16px;
  }

  #hero { height: 46vh; min-height: 240px; padding: 14px; }
  .module-grid { gap: 12px; }
  .module-card { flex-basis: calc(50% - 6px); min-width: 140px; }
  #notify-form input[type="email"] { width: 100%; max-width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .module-card { flex-basis: 100%; }
}

/* GROK_FRONTPAGE_HERO_20260830 */
.sh-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
  min-height: 72vh;
  padding: 48px 6vw 24px;
  background: #05070c;
  color: #e8f2ff;
}
.sh-kicker {
  color: #5ee0c8;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.sh-h1 {
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: .95;
  letter-spacing: -1.4px;
  margin: 12px 0 16px;
  font-weight: 750;
  color: #fff;
}
.sh-h1 span { font-weight: 750; }
.sh-lead {
  color: #8aa0b8;
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 36rem;
  line-height: 1.45;
}
.sh-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.sh-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 650;
  text-decoration: none; border: 1px solid transparent;
}
.sh-btn-g { background: #5ee0c8; color: #04120e; }
.sh-btn-ghost { border-color: #2a4a55; color: #e8f2ff; }
.sh-scope {
  position: relative; display: block;
  aspect-ratio: 1;
  max-width: min(520px, 46vw);
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(40,90,80,.22), transparent 46%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 34px, rgba(94,224,200,.08) 35px 36px),
    #070b12;
  box-shadow: inset 0 0 0 1px #1a2a3c;
  overflow: hidden;
}
.sh-sweep {
  position: absolute; inset: 0;
  background: conic-gradient(from 210deg, rgba(94,224,200,.0) 0 8deg, rgba(94,224,200,.35) 18deg, transparent 22deg);
}
.sh-ac {
  position: absolute; width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-bottom: 14px solid #ff3b3b;
}
.sh-ac-r { left: 68%; top: 22%; transform: rotate(28deg); }
.sh-ac-c { left: 78%; top: 52%; border-bottom-color: #5ee0c8; transform: rotate(110deg); }
.sh-ac-v { left: 42%; top: 68%; border-bottom-color: #c48cff; transform: rotate(200deg); }
.sh-tick { position: absolute; width: 10px; height: 3px; opacity: .45; }
.sh-tick-sea { left: 28%; top: 58%; background: #3ad; }
.sh-tick-rail { left: 62%; top: 40%; background: #c90; }
.sh-seed {
  text-align: center;
  color: #6a8094;
  font-size: 14px;
  margin: 0 6vw 28px;
}
@media (max-width: 860px) {
  .sh-hero { grid-template-columns: 1fr; min-height: 0; padding: 28px 20px 8px; }
  .sh-scope { max-width: min(360px, 86vw); }
}
@media (min-width: 1400px) {
  .sh-h1 { font-size: 76px; }
}

/* GROK_FRONTPAGE_HERO_FIX_20260830 */
#hero.sh-hero {
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  justify-content: stretch;
  height: auto !important;
  min-height: 72vh;
  max-height: none !important;
  overflow: visible !important;
  width: 100%;
  box-sizing: border-box;
  padding: 56px 6vw 28px !important;
  background: #05070c;
}
#hero.sh-hero .sh-h1,
#hero.sh-hero .sh-lead,
#hero.sh-hero .sh-kicker {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #ffffff;
}
#hero.sh-hero .sh-lead { color: #8aa0b8 !important; }
#hero.sh-hero .sh-kicker { color: #5ee0c8 !important; }
#hero.sh-hero .sh-scope {
  display: block !important;
  width: min(480px, 42vw);
  max-width: 480px;
  min-height: 280px;
}
@media (max-width: 860px) {
  #hero.sh-hero {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding: 28px 20px 12px !important;
  }
  #hero.sh-hero .sh-scope {
    width: min(360px, 86vw);
    max-width: 360px;
  }
}

/* GROK_FP_HEADER_CARDS_20260830 */
#hero.sh-hero { padding-top: 108px !important; }
#hero.sh-hero .sh-h1 { margin-top: 0; }
.module-icon { display: none !important; }
.module-card { text-align: left !important; padding: 22px !important; }

/* GROK_FP_SCOPE_IMG_20260830 */
#hero.sh-hero a.sh-scope-img {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  aspect-ratio: auto !important;
  width: min(560px, 46vw) !important;
  max-width: 560px !important;
  min-height: 0 !important;
}
#hero.sh-hero a.sh-scope-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* GROK_FP_LIVE_BG_20260830 */
#hero.sh-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 78vh !important;
}
#hero.sh-hero .sh-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  background: linear-gradient(90deg, rgba(5,7,12,.82) 70%, rgba(5,7,12,0));
  padding: 12px 18px 12px 0;
}
.sh-livebg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.sh-livebg iframe {
  border: 0;
  position: absolute;
  top: -8px;
  left: 18%;
  width: 110%;
  height: 108%;
  filter: saturate(.9) brightness(.72);
}
.sh-scope, .sh-scope-img { display: none !important; }
@media (max-width: 860px) {
  .sh-livebg iframe { left: 0; width: 160%; }
}

/* GROK_FP_MOBILE_HERO_20260830 */
@media (max-width: 860px) {
  .sh-livebg { display: none !important; }
  #hero.sh-hero { min-height: 0 !important; overflow: visible !important; }
  #hero.sh-hero .sh-hero-copy {
    background: none !important;
    max-width: none;
    padding: 8px 0 0 !important;
  }
}

/* GROK_FP_ON_THE_FRAME_20260830 */
.sh-rooms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 18px auto 0;
  padding: 0 6vw 8px;
}
.sh-room {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #d6e8ff;
  background: #071018;
  border: 1px solid #1a3344;
  border-radius: 12px;
  padding: 22px 12px;
  letter-spacing: 1.2px;
  font: 650 15px/1.2 system-ui, sans-serif;
}
.sh-room:hover { border-color: #4ad; color: #fff; }
@media (max-width: 700px) {
  .sh-rooms { grid-template-columns: 1fr; }
}


/* GROK_FP_LOGO_20260831 */
#site-header img[src*="logo"],
.sh-logo-link img,
.site-header img[src*="logo"] {
  height: 42px !important;
  width: auto !important;
}
.sh-logo-link { display: inline-flex; align-items: center; line-height: 0; }

/* GROK_FP_LOGO_HERO_20260831 */
#site-header .nav-logo {
  display: inline-flex;
  align-items: center;
  font-size: 0 !important;
  color: transparent !important;
  text-decoration: none;
  line-height: 0;
}
#site-header .nav-logo img {
  height: 56px !important;
  width: auto !important;
  max-height: 56px;
}
#hero.sh-hero {
  position: relative !important;
}
#hero.sh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    #000 0%,
    #000 8%,
    rgba(0,0,0,.55) 28%,
    rgba(0,0,0,.12) 48%,
    rgba(0,0,0,0) 62%);
}
.sh-livebg {
  overflow: hidden !important;
}
.sh-livebg iframe {
  left: 14% !important;
  width: 132% !important;
  top: 0 !important;
  height: 100% !important;
}
/* GROK_FP_HERO_HIDE_SIDE_20260831 */


/* GROK_FP_HERO_CLIP_20260831 */
