:root {
  --bg: #050007;
  --bg-alt: #0b020f;
  --card: #140414;
  --card-soft: #16040f;
  --border-strong: #ff2444;
  --border-soft: #432030;
  --accent-red: #ff2444;
  --accent-red-soft: #ff6b81;
  --accent-gold: #ffd54a;
  --accent-text: #ffe7f3;
  --text-main: #fbe9ff;
  --text-muted: #a987a7;
  --chip-red-bg: rgba(255, 36, 68, 0.15);
  --chip-dark-bg: rgba(10, 5, 20, 0.8);
  --shadow-strong: 0 0 40px rgba(255, 16, 64, 0.65);
  --shadow-soft: 0 0 30px rgba(255, 16, 64, 0.2);
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'Chakra Petch', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background: radial-gradient(circle at top, #200018 0, #050007 55%, #000 100%);
  color: var(--text-main);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.page {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: soft-light;
  opacity: 0.35;
  z-index: -1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 52px;
}

.hero-left {
  display: flex;
  gap: 20px;
}

.logo-badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: radial-gradient(circle at top, #3b0213 0, #160012 40%, #050007 100%);
  border: 1px solid rgba(255, 72, 102, 0.6);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rlt-logo {
  width: 86px;
  height: 86px;
}

.hero-copy {
  flex: 1;
}

.tagline {
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-red-soft);
  margin: 0 0 6px;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 10px;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 62, 106, 0.6);
}

.ticker {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 228, 125, 0.7);
  background: radial-gradient(circle at top, #583004, #32171b);
  font-size: 1em;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.subtitle {
  margin: 0 0 18px;
  font-size: 0.98rem;
  color: var(--text-muted);
}

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

.strike {
  text-decoration: line-through;
  opacity: 0.7;
}

.glow {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(255, 212, 74, 0.8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.13s ease-out, box-shadow 0.13s ease-out, background 0.13s ease-out,
    border-color 0.13s ease-out;
}

.btn-primary {
  background: linear-gradient(120deg, #ff2444, #ff6b36, #ffd54a);
  color: #1b0208;
  box-shadow: var(--shadow-strong);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 0 50px rgba(255, 104, 62, 0.9);
}

.btn-outline {
  border-color: rgba(255, 120, 160, 0.6);
  background: rgba(10, 0, 12, 0.7);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(30, 0, 26, 0.95);
  box-shadow: var(--shadow-soft);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.9;
}

.hero-meta span::before {
  content: '▰';
  margin-right: 4px;
  color: rgba(255, 90, 110, 0.88);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chart-card {
  background: radial-gradient(circle at top left, #380711 0, #140414 40%, #070009 100%);
  border-radius: 24px;
  padding: 14px 14px 12px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 0 40px rgba(255, 56, 96, 0.35);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
}

.chip-red {
  background: var(--chip-red-bg);
  border-color: rgba(255, 72, 110, 0.9);
  color: var(--accent-red-soft);
}

.chip-dark {
  background: var(--chip-dark-bg);
  border-color: rgba(118, 63, 104, 0.8);
  color: var(--text-muted);
}

.doom-chart {
  width: 100%;
  margin-bottom: 6px;
}

.chart-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.stat {
  background: rgba(10, 0, 12, 0.8);
  border-radius: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(52, 24, 44, 0.9);
}

.stat .label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.stat .value {
  font-size: 0.78rem;
}

.stat .value.red {
  color: var(--accent-red-soft);
}

.stat .value.neutral {
  color: #e0c7ff;
}

.hero-photo-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-frame {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 26 / 14;
  background: radial-gradient(circle at top, #ff0033, #1a0204 55%);
  border: 1px solid rgba(255, 77, 106, 0.8);
  box-shadow: 0 0 32px rgba(255, 0, 64, 0.7);
}

.photo-frame.secondary {
  transform: translateY(6px);
  opacity: 0.9;
  border-color: rgba(255, 143, 173, 0.7);
  box-shadow: 0 0 26px rgba(255, 120, 160, 0.55);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: screen;
}

.section {
  border-radius: 26px;
  padding: 22px 18px 20px;
  margin-bottom: 24px;
  background: radial-gradient(circle at top left, #1b0213 0, #09000a 50%, #020006 100%);
  border: 1px solid rgba(83, 38, 76, 0.9);
  box-shadow: 0 0 40px rgba(255, 36, 84, 0.16);
}

.section-header {
  max-width: 560px;
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 6px 0 8px;
  font-size: 1.4rem;
}

.section-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: radial-gradient(circle at top left, #2b0416 0, #160213 40%, #050007 100%);
  border-radius: 18px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(103, 40, 94, 0.86);
  box-shadow: 0 0 22px rgba(255, 36, 84, 0.35);
}

.card h3 {
  margin: 2px 0 6px;
  font-size: 0.98rem;
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
}

.step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #ff2444, #7c071e);
  border: 1px solid rgba(255, 215, 155, 0.7);
  color: #1a0208;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(255, 80, 104, 0.9);
}

.steps h3 {
  margin: 0 0 3px;
  font-size: 0.98rem;
}

.steps p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

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

.doom-pill {
  display: flex;
  align-items: stretch;
}

.doom-pill-inner {
  flex: 1;
  border-radius: 999px;
  padding: 16px 18px;
  background: radial-gradient(circle at top, #ff2444 0, #3b0016 40%, #050007 100%);
  border: 1px solid rgba(255, 200, 186, 0.8);
  box-shadow: 0 0 46px rgba(255, 44, 104, 0.85);
}

.doom-label {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
}

.doom-bar {
  position: relative;
  height: 20px;
  border-radius: 999px;
  background: rgba(40, 0, 10, 0.8);
  border: 1px solid rgba(255, 181, 181, 0.8);
  overflow: hidden;
  margin: 0 auto 10px;
  width: 82%;
}

.doom-bar-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(90deg, #ffa500, #ff2444, #ff2444);
  box-shadow: 0 0 20px rgba(255, 60, 80, 0.95);
  transform-origin: left;
  animation: breathing 2.4s ease-in-out infinite;
}

.doom-bar-text {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.doom-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 6px;
  font-size: 0.82rem;
}

.doom-list li {
  margin-bottom: 2px;
}

.tiny {
  margin: 0;
  font-size: 0.72rem;
  opacity: 0.9;
}

.section-community {
  text-align: left;
}

.section-ca {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ca-value {
  flex: 1 1 220px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 0, 10, 0.9);
  border: 1px solid rgba(255, 120, 160, 0.8);
  font-size: 0.86rem;
  color: var(--accent-text);
  overflow-x: auto;
  scrollbar-width: none;
}

.ca-value::-webkit-scrollbar {
  display: none;
}

.ca-copy {
  white-space: nowrap;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 170, 0.9);
  background: radial-gradient(circle at top, #42102a, #140010);
  color: var(--accent-text);
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 56, 112, 0.6);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out;
}

.social-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(255, 90, 140, 0.9);
  background: radial-gradient(circle at top, #5b1637, #1c0014);
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* Tint black icons into a warm red/orange tone */
  filter: invert(39%) sepia(96%) saturate(749%) hue-rotate(338deg) brightness(102%)
    contrast(105%);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 128, 160, 0.8);
  background: radial-gradient(circle at top, #46001d, #12000a);
  box-shadow: 0 0 20px rgba(255, 40, 96, 0.6);
}

.footer {
  text-align: center;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.9;
}

.footer .ticker {
  font-size: 0.74rem;
}

@keyframes breathing {
  0%,
  100% {
    transform: scaleX(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .hero-left {
    flex-direction: row;
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .doom-pill-inner {
    border-radius: 24px;
  }
}

@media (max-width: 720px) {
  .page {
    padding-inline: 14px;
  }

  .hero-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-badge {
    width: 100px;
    height: 100px;
  }

  .section-grid .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .chart-footer {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    margin-bottom: 36px;
  }

  .section {
    padding-inline: 14px;
  }

  .photo-frame.secondary {
    display: none;
  }
}


