/* ===========================
   CRONOS PARROT — STYLE.CSS
   Color Palette: Black, White, Deep Gray
   Accent: White / Off-white / Charcoal
   =========================== */

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

:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --dark: #1a1a1a;
  --dark-mid: #222222;
  --mid: #333333;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.15);
  --white: #ffffff;
  --off-white: #f0ede8;
  --muted: #888888;
  --accent: #e8e4dc;
  --tag-alert: #c0392b;
  --tag-launch: #1a6f3c;
  --tag-signal: #1a4f8a;
  --nav-h: 68px;
  --ticker-h: 36px;
  --font: 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ==============================
   TICKER
   ============================== */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-text {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  animation: ticker 30s linear infinite;
  padding-left: 100%;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: var(--ticker-h);
  left: 0; right: 0;
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: var(--radius);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  flex: 1;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.dot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.btn-subscribe {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.btn-subscribe:hover { background: var(--off-white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--white); }

/* ==============================
   PAGE OFFSET
   ============================== */
.hero, section { padding-top: calc(var(--ticker-h) + var(--nav-h)); }
.hero { padding-top: calc(var(--ticker-h) + var(--nav-h)); }

/* ==============================
   HERO
   ============================== */
.hero {
  background: var(--near-black);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--dark);
  min-height: 420px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--dark-mid);
}

.hero-img-placeholder i {
  font-size: 48px;
  color: var(--border-light);
}

.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.85);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

/* ==============================
   SECTIONS
   ============================== */
.section {
  padding: 96px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 56px;
  max-width: 600px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--white);
}

.section-header p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.section-header.light h2 { color: var(--black); }
.section-header.light p { color: #555; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

/* ==============================
   BROADCASTS
   ============================== */
.broadcasts {
  background: var(--black);
}

/* FEATURED VIDEO */
.featured-video {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.video-wrap {
  position: relative;
  background: var(--dark-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dark-mid);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.video-placeholder i {
  font-size: 36px;
  color: rgba(255,255,255,0.15);
}

.video-wrap.sm .video-placeholder i { font-size: 28px; }

.featured-meta {
  padding: 8px 0;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.featured-meta h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.featured-meta p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.meta-footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  transition: border-color 0.2s;
}

.video-card:hover { border-color: var(--border-light); }

.video-card .card-meta {
  padding: 20px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.card-tag.alert { background: rgba(192,57,43,0.15); color: #e74c3c; }
.card-tag.launch { background: rgba(26,111,60,0.15); color: #2ecc71; }
.card-tag.signal { background: rgba(26,79,138,0.15); color: #5dade2; }

.video-card h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--white);
}

.video-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-footer {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.card-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ==============================
   REPORTS
   ============================== */
.reports {
  background: var(--off-white);
}

.reports .section-label { color: #444; border-color: rgba(0,0,0,0.12); }

.report-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.report-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.report-card:hover {
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.featured-report {
  grid-row: 1 / 3;
}

.report-icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.report-icon.sm {
  width: 40px;
  height: 40px;
  font-size: 16px;
  margin-bottom: 16px;
}

.report-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.danger-tag { color: #c0392b; }
.success-tag { color: #1a6f3c; }
.mystery-tag { color: #5d3f9b; }

.report-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--black);
}

.report-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.report-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.report-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 24px 0;
}

.report-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-stats span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.report-stats i { color: var(--muted); width: 16px; }

/* ==============================
   SIGNALS / MANIFESTO
   ============================== */
.signals {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: var(--radius-lg);
  margin: 0 auto 32px;
}

.manifesto blockquote {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
  font-style: normal;
}

.manifesto-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.manifesto-pillars {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.pillar:hover {
  border-color: var(--white);
  color: var(--white);
}

.pillar i { font-size: 13px; }

/* ==============================
   ABOUT
   ============================== */
.about-section {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-cta { margin-top: 32px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}

.feature-item:last-child { border-bottom: none; padding-bottom: 0; }

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--dark-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: var(--radius);
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.footer-quote {
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: italic;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .hero-img-wrap { min-height: 300px; }
  .featured-video { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .report-grid { grid-template-columns: 1fr; }
  .featured-report { grid-row: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .video-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .manifesto-pillars { flex-direction: column; align-items: center; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-inner { padding: 40px 24px 60px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .report-grid { grid-template-columns: 1fr; }
}
