/* Hustle TV marketing — dark, operator-grade */

:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --bg-muted: #1a1a1e;
  --fg: #f2efe6;
  --fg-muted: #a39f94;
  --fg-soft: #d8d4c8;
  --border: #2a2a30;
  --primary: #e10600;
  --primary-soft: color-mix(in srgb, #e10600 18%, transparent);
  --accent: #e28c3a;
  --accent-soft: color-mix(in srgb, #e28c3a 16%, transparent);
  --radius: 6px;
  --max: 72rem;
  --font: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --display: "Oswald", "DIN Condensed", "Arial Narrow", Impact, sans-serif;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--fg);
  background:
    radial-gradient(1000px 520px at 12% -8%, var(--primary-soft), transparent 55%),
    radial-gradient(900px 480px at 90% 0%, var(--accent-soft), transparent 50%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: color-mix(in srgb, var(--primary) 45%, transparent);
  color: var(--fg);
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.display {
  font-family: var(--display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-banner {
  height: 2rem;
  width: auto;
  display: block;
}

.brand-hero-banner {
  height: 2.75rem;
  width: auto;
  display: block;
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-desktop a {
  color: var(--fg-muted);
  transition: color 0.15s ease;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--fg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid var(--border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.65rem 0;
  color: var(--fg-muted);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* Buttons / badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff7f5;
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--primary) 88%, #fff);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}

.btn-outline:hover {
  border-color: color-mix(in srgb, var(--fg) 35%, var(--border));
  background: color-mix(in srgb, var(--bg-muted) 55%, transparent);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  padding-inline: 0;
}

.btn-ghost:hover {
  color: var(--fg);
}

.btn-lg {
  min-height: 3rem;
  padding-inline: 1.5rem;
}

.btn-sm {
  min-height: 2rem;
  padding-inline: 0.85rem;
  font-size: 0.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-accent {
  background: var(--accent-soft);
  color: var(--accent);
}

.badge-outline {
  border-color: var(--border);
  color: var(--fg-muted);
}

.badge-soft {
  background: var(--primary-soft);
  color: var(--primary);
}

/* Layout blocks */
.hero {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
    align-items: end;
    padding-top: 4rem;
  }
}

.hero h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.92;
}

.lead {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 1.125rem;
  color: var(--fg-muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.section.muted {
  background: color-mix(in srgb, var(--bg-elevated) 55%, transparent);
}

.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.section h2 {
  margin: 0.5rem 0 0;
  max-width: 40rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.05;
}

.section-intro {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  color: var(--fg-muted);
}

.grid-3 {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

@media (min-width: 800px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

@media (min-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 55%, var(--bg-elevated));
  border-radius: var(--radius);
  padding: 1.35rem;
}

.card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
}

.card p {
  margin: 0.55rem 0 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.problem {
  border-left: 2px solid color-mix(in srgb, var(--primary) 75%, transparent);
  padding-left: 1rem;
}

.problem h3 {
  margin: 0;
  font-size: 1.1rem;
}

.problem p {
  margin: 0.5rem 0 0;
  color: var(--fg-muted);
  font-size: 0.92rem;
}

/* Feature rows */
.feature-row {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
  align-items: center;
}

@media (min-width: 960px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row.reverse .feature-copy {
    order: 2;
  }
  .feature-row.reverse .shot {
    order: 1;
  }
}

.feature-copy ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-copy li {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
  font-size: 0.92rem;
}

.feature-copy li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--primary);
  flex-shrink: 0;
}

.shot {
  margin: 0;
  border: 1px solid var(--border);
  background: #050506;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

/* Shots are 1440×900 (16:10). Never force a different box — that stretches them. */
.shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top center;
}

.shot figcaption {
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-muted) 55%, transparent);
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Homepage syndication / insights callouts */
.callout {
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--border));
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 12%, transparent),
      color-mix(in srgb, var(--primary) 8%, transparent) 55%,
      transparent
    ),
    var(--bg-elevated);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.callout .eyebrow {
  color: var(--accent);
}

.stat-strip {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

@media (min-width: 720px) {
  .stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.stat-strip .stat {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  padding: 0.9rem 1rem;
}

.stat-strip .stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
}

.stat-strip .stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Accordion */
.accordion details {
  border-bottom: 1px solid var(--border);
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion details p {
  margin: 0 0 1rem;
  color: var(--fg-muted);
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer p {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.site-footer .col-title {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.site-footer .col a,
.site-footer .col p {
  display: block;
  margin: 0.35rem 0 0;
  color: var(--fg-soft);
  font-size: 0.9rem;
}

.footer-meta {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}

.stack-sm > * + * {
  margin-top: 0.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.strong {
  color: var(--fg);
  font-weight: 650;
}
