/* =========================================================
   Tech Support Hotline — style.css
   Palette pulled from tsh_logo.png:
   electric blue #1E9BEF · CRT green #35C24A · gunmetal grays
   ========================================================= */

:root {
  --bg: #0a0e16;
  --bg-alt: #0e1420;
  --surface: #131b2a;
  --surface-2: #182238;
  --border: rgba(148, 178, 255, 0.12);
  --text: #e8eef8;
  --text-dim: #9aa8c0;
  --blue: #1e9bef;
  --blue-bright: #4db8ff;
  --green: #35c24a;
  --green-bright: #5ee977;
  --red: #ff4d5a;
  --radius: 18px;
  --radius-sm: 12px;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { width: min(1160px, 92%); margin-inline: auto; }

.mono { font-family: var(--mono); font-size: 0.8em; letter-spacing: 0.06em; }
.accent { color: var(--blue-bright); }

.tel-link {
  color: var(--blue-bright);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.tel-link:hover { text-decoration: underline; }

.gradient-text {
  background: linear-gradient(92deg, var(--blue-bright) 10%, var(--green-bright) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-small { padding: 0.5rem 1.1rem; font-size: 0.9rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1479c9 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 155, 239, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 155, 239, 0.5);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-bright); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}
.brand-logo { width: 42px; height: 42px; object-fit: contain; }
.brand-name { font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-bright); }
.nav-links a.btn { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 6rem 0 5rem; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 12% 8%, rgba(30, 155, 239, 0.16), transparent 65%),
    radial-gradient(640px 420px at 88% 82%, rgba(53, 194, 74, 0.1), transparent 65%),
    linear-gradient(transparent 0%, transparent 60%, var(--bg) 100%),
    repeating-linear-gradient(0deg, rgba(148, 178, 255, 0.045) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(148, 178, 255, 0.045) 0 1px, transparent 1px 44px);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 1.1rem 0;
}
.lead { color: var(--text-dim); font-size: 1.12rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--green-bright);
  border: 1px solid rgba(53, 194, 74, 0.35);
  background: rgba(53, 194, 74, 0.08);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 77, 90, 0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 90, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 77, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 90, 0); }
}

.hero-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-weight: 800; font-size: 1.35rem; color: var(--blue-bright); }
.stat-label { color: var(--text-dim); font-size: 0.85rem; }

.hero-art { position: relative; display: grid; place-items: center; }
.logo-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 155, 239, 0.28) 0%, rgba(53, 194, 74, 0.1) 45%, transparent 70%);
  filter: blur(20px);
}
.hero-logo {
  position: relative;
  width: min(360px, 80%);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}
.float { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.ticker {
  position: relative;
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ticker-label {
  color: var(--red);
  font-weight: 600;
  flex-shrink: 0;
  padding-right: 0.8rem;
  border-right: 1px solid var(--border);
}
.ticker-text { color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section-head h2, .split-copy h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 0.9rem;
}
.section-sub { color: var(--text-dim); }
.eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
}

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.media-chip {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(10, 14, 22, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--green-bright);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.72rem;
}
.split-copy p { color: var(--text-dim); margin-bottom: 1rem; }
.checklist { list-style: none; margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.checklist li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.3rem;
  height: 1.3rem;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: var(--green-bright);
  background: rgba(53, 194, 74, 0.12);
  border: 1px solid rgba(53, 194, 74, 0.35);
  border-radius: 6px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 155, 239, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.card-img { aspect-ratio: 16 / 9; overflow: hidden; }
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.6rem 1.8rem; }
.card-step {
  color: var(--blue-bright);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}
.card-body h3 { margin: 0.5rem 0 0.55rem; font-size: 1.25rem; font-weight: 700; }
.card-body p { color: var(--text-dim); font-size: 0.97rem; }

/* ---------- Schedule ---------- */
.schedule {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.schedule-row {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.schedule-row:hover { border-color: rgba(30, 155, 239, 0.4); transform: translateX(4px); }
.schedule-day {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-bright);
  background: rgba(30, 155, 239, 0.1);
  border: 1px solid rgba(30, 155, 239, 0.3);
  border-radius: 10px;
  text-align: center;
  padding: 0.55rem 0;
}
.schedule-info h3 { font-size: 1.05rem; font-weight: 700; }
.schedule-info p { color: var(--text-dim); font-size: 0.88rem; }
.schedule-time { color: var(--text); font-weight: 600; }
.pill {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.pill-live {
  color: var(--red);
  border-color: rgba(255, 77, 90, 0.4);
  background: rgba(255, 77, 90, 0.08);
}

.countdown {
  margin-top: 2.6rem;
  text-align: center;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}
.countdown-label { color: var(--text-dim); letter-spacing: 0.2em; font-size: 0.75rem; }
.countdown-timer { display: flex; gap: 1rem; }
.countdown-timer span {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  min-width: 84px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.6rem;
}
.countdown-timer b { font-size: 1.7rem; color: var(--blue-bright); }
.countdown-timer small { font-size: 0.62rem; letter-spacing: 0.18em; color: var(--text-dim); }

/* ---------- TBA panel ---------- */
.tba-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding: clamp(2.4rem, 6vw, 4rem) 2rem;
  border: 2px dashed rgba(148, 178, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 200px at 50% 30%, rgba(30, 155, 239, 0.09), transparent 70%),
    var(--surface);
}
.tba-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
}
.tba-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tba-sub { color: var(--text-dim); letter-spacing: 0.16em; font-size: 0.78rem; }

/* ---------- Media slots (awaiting upload) ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.media-slot {
  aspect-ratio: 16 / 10;
  border: 2px dashed rgba(148, 178, 255, 0.22);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background:
    radial-gradient(220px 130px at 50% 40%, rgba(30, 155, 239, 0.07), transparent 70%),
    var(--surface);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.media-slot:hover { border-color: rgba(30, 155, 239, 0.55); transform: translateY(-4px); }
.media-slot-inner {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.media-slot-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(30, 155, 239, 0.1);
  color: var(--blue-bright);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.media-slot small { color: rgba(154, 168, 192, 0.6); letter-spacing: 0.04em; }

/* ---------- CTA panel ---------- */
.cta-panel {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: clamp(2.4rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 14, 22, 0.92) 20%, rgba(30, 155, 239, 0.25) 130%);
}
.cta-copy { position: relative; display: grid; justify-items: center; gap: 0.6rem; }
.cta-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; }
.cta-copy p { color: var(--text-dim); max-width: 46ch; }
.cta-copy .hero-actions { justify-content: center; margin-top: 1.2rem; }

.phone-lines {
  margin-top: 1.6rem;
  width: min(420px, 100%);
  display: grid;
  gap: 0.55rem;
}
.phone-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(10, 14, 22, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.1rem;
  backdrop-filter: blur(6px);
}
.phone-label {
  color: var(--text-dim);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 3rem 0 2.4rem;
}
.footer-inner {
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; text-align: left; }
.footer-logo { width: 52px; height: 52px; object-fit: contain; }
.footer-brand p { color: var(--text-dim); font-size: 0.72rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: center; }
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-bright); }
.footer-copy { color: rgba(154, 168, 192, 0.55); font-size: 0.72rem; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float, .live-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-art { margin-top: 1rem; }
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .card-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    background: rgba(10, 14, 22, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1.6rem 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .brand-name { font-size: 0.98rem; }
  .schedule-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas: "day info" "day meta";
    row-gap: 0.5rem;
  }
  .schedule-day { grid-area: day; }
  .schedule-info { grid-area: info; }
  .schedule-time, .pill { grid-area: meta; justify-self: start; }
  .schedule-time { margin-left: 0; }
  .pill { justify-self: end; grid-row: 2; grid-column: 2; }
  .countdown-timer span { min-width: 68px; padding: 0.7rem 0.4rem; }
  .countdown-timer b { font-size: 1.3rem; }
  .media-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
}
