:root {
  --bg: #070b14;
  --bg-soft: #0e1628;
  --card: rgba(21, 33, 58, 0.72);
  --card-strong: rgba(17, 29, 49, 0.92);
  --text: #e9f2ff;
  --muted: #9cb3d9;
  --line: rgba(117, 151, 211, 0.25);
  --accent: #7c9cff;
  --accent2: #00e8c1;
  --shadow: 0 14px 45px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 5%, #13203e, transparent 40%), var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 40vw;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -2;
}

.orb-1 {
  background: #6ea6ff;
  top: -8rem;
  left: -6rem;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-2 {
  background: #00d2ad;
  right: -8rem;
  bottom: 18%;
  animation: drift 11s ease-in-out infinite alternate-reverse;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero,
.section,
.footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  padding: 1.1rem 0 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

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

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(124, 156, 255, 0.4);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(10, 18, 32, 0.7);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #bcd0ef;
  padding: 0.38rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(120deg, rgba(124, 156, 255, 0.35), rgba(0, 232, 193, 0.28));
  color: #eaf4ff;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.pill {
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(120deg, var(--accent), #5675ff);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.tag {
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0;
  line-height: 1.06;
}

h1 span {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(124, 156, 255, 0.65);
}

.sub {
  color: var(--muted);
  margin-top: 0.95rem;
  max-width: 62ch;
  line-height: 1.6;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.95rem;
}

.signal-chip {
  background: rgba(124, 156, 255, 0.16);
  border: 1px solid rgba(124, 156, 255, 0.45);
  color: #dce8ff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.stat-card {
  padding: 0.95rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  margin: 0;
  font-size: 1.7rem;
}

.stat-card p {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 100%;
}

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

.hero-glass {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(7, 11, 20, 0.7);
  border: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.section {
  padding: 1.45rem 0;
}

.ticker-wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 18, 32, 0.68);
}

.ticker-track {
  display: flex;
  gap: 0.7rem;
  padding: 0.62rem;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-item {
  background: linear-gradient(120deg, rgba(124, 156, 255, 0.22), rgba(0, 232, 193, 0.18));
  border: 1px solid rgba(124, 156, 255, 0.42);
  color: #dce9ff;
  border-radius: 999px;
  padding: 0.35rem 0.68rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.starter-guide {
  border: 1px solid rgba(124, 156, 255, 0.34);
  border-radius: 18px;
  padding: 1.05rem;
  background: rgba(10, 18, 34, 0.72);
}

.gen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.gen-card {
  border: 1px solid rgba(124, 156, 255, 0.35);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(124, 156, 255, 0.08);
}

.gen-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid rgba(124, 156, 255, 0.32);
  margin-bottom: 0.55rem;
}

.gen-card span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9fe2d2;
}

.gen-card h3 {
  margin: 0.45rem 0;
  font-size: 1rem;
}

.gen-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.85rem;
}

.web4-highlight {
  background: linear-gradient(145deg, rgba(124, 156, 255, 0.2), rgba(0, 232, 193, 0.11));
  border-color: rgba(0, 232, 193, 0.42);
}

.guide-example {
  margin-top: 0.7rem;
  border: 1px dashed rgba(0, 232, 193, 0.45);
  border-radius: 10px;
  background: rgba(0, 232, 193, 0.08);
  padding: 0.65rem 0.75rem;
  color: #d8f8ef;
  font-size: 0.86rem;
  line-height: 1.45;
}

.web-visual-strip {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.45rem;
  align-items: center;
}

.visual-node {
  border: 1px solid rgba(124, 156, 255, 0.34);
  border-radius: 10px;
  overflow: hidden;
  height: 78px;
}

.visual-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-arrow {
  color: #9fd2ff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.compare-board {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.compare-item {
  border: 1px solid rgba(124, 156, 255, 0.35);
  border-radius: 12px;
  background: rgba(124, 156, 255, 0.1);
  padding: 0.68rem;
}

.compare-item h3 {
  margin: 0;
  font-size: 0.95rem;
}

.compare-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.reasons-showcase {
  border: 1px solid rgba(124, 156, 255, 0.35);
  border-radius: 20px;
  padding: 1.1rem;
  background: linear-gradient(155deg, rgba(17, 29, 53, 0.86), rgba(10, 18, 34, 0.9));
}

.shock-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.shock-badges span {
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 232, 193, 0.4);
  background: rgba(0, 232, 193, 0.12);
  color: #d9f9f1;
  font-size: 0.74rem;
  font-weight: 700;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.reason-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(124, 156, 255, 0.38);
  background: rgba(14, 24, 43, 0.9);
}

.reason-media {
  margin: -1rem -1rem 0.75rem;
  height: 130px;
  overflow: hidden;
  border-bottom: 1px solid rgba(124, 156, 255, 0.35);
}

.reason-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.reason-rank {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  padding: 0.22rem 0.44rem;
  border-radius: 8px;
  background: rgba(7, 13, 24, 0.75);
  border: 1px solid rgba(124, 156, 255, 0.45);
  color: #ddebff;
  font-weight: 800;
  font-size: 0.76rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.news-card {
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 1rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 156, 255, 0.75);
}

.news-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.card-icon {
  margin-right: 0.25rem;
}

.examples-showcase {
  border: 1px solid rgba(124, 156, 255, 0.34);
  border-radius: 20px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(13, 23, 42, 0.85), rgba(10, 18, 33, 0.9));
}

.examples-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124, 156, 255, 0.35);
  min-height: 240px;
}

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

.examples-hero-overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  background: linear-gradient(115deg, rgba(5, 10, 20, 0.85), rgba(5, 10, 20, 0.35));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.examples-hero-overlay h2 {
  margin: 0;
}

.examples-hero-overlay p {
  max-width: 70ch;
  margin: 0.45rem 0 0;
}

.examples-tags {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.examples-tags span {
  border: 1px solid rgba(0, 232, 193, 0.4);
  background: rgba(0, 232, 193, 0.14);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #dbfff6;
}

.example-cards-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.example-card {
  padding: 0;
  overflow: hidden;
}

.example-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(124, 156, 255, 0.34);
}

.example-card h3,
.example-card p {
  padding-inline: 0.9rem;
}

.example-card h3 {
  margin: 0.8rem 0 0.45rem;
}

.example-card p {
  margin: 0 0 0.95rem;
}

.examples-panels {
  margin-top: 0.75rem;
}

.flow-panel {
  border-color: rgba(0, 232, 193, 0.34);
  background: linear-gradient(145deg, rgba(12, 23, 40, 0.9), rgba(8, 24, 26, 0.72));
}

.flow-list li {
  margin-bottom: 0.42rem;
}

.data-section {
  background: linear-gradient(160deg, rgba(14, 25, 47, 0.88), rgba(9, 16, 31, 0.9));
  border: 1px solid rgba(124, 156, 255, 0.38);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 18px 52px rgba(6, 12, 26, 0.58);
}

.section-head p {
  color: var(--muted);
}

.chart-shell {
  margin-top: 0.6rem;
  min-height: 360px;
  height: 380px;
  border-radius: 14px;
  border: 1px solid rgba(124, 156, 255, 0.32);
  background: radial-gradient(circle at 18% 0%, rgba(124, 156, 255, 0.2), rgba(8, 14, 27, 0.85) 58%);
  padding: 0.65rem;
  position: relative;
  overflow: hidden;
}

#txChart {
  width: 100%;
  height: 100% !important;
  max-height: none;
}

.growth-ribbon {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.growth-ribbon span {
  padding: 0.36rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 232, 193, 0.36);
  background: linear-gradient(120deg, rgba(0, 232, 193, 0.2), rgba(124, 156, 255, 0.17));
  color: #dff7f2;
  font-size: 0.78rem;
  font-weight: 600;
}

.growth-metrics {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.growth-metrics article {
  border: 1px solid rgba(124, 156, 255, 0.42);
  background: linear-gradient(145deg, rgba(124, 156, 255, 0.15), rgba(0, 232, 193, 0.09));
  border-radius: 12px;
  padding: 0.62rem;
}

.growth-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  display: block;
}

.growth-metrics strong {
  margin-top: 0.22rem;
  display: block;
  font-size: 1.25rem;
}

.era-compare {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.era-compare article {
  border-radius: 12px;
  border: 1px solid rgba(124, 156, 255, 0.4);
  background: linear-gradient(150deg, rgba(124, 156, 255, 0.12), rgba(0, 232, 193, 0.07));
  padding: 0.68rem;
}

.era-compare header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
}

.era-compare header span {
  color: #d8e6ff;
  font-weight: 700;
}

.era-compare header strong {
  color: #ecf7ff;
  font-size: 1.05rem;
}

.era-compare p {
  margin: 0.34rem 0 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  min-height: 2.3rem;
}

.era-bar {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(124, 156, 255, 0.28);
  background: rgba(124, 156, 255, 0.12);
  overflow: hidden;
}

.era-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(120deg, #00e8c1, #7c9cff);
}

.era-compare small {
  display: block;
  margin-top: 0.32rem;
  color: #cbdbf8;
  font-weight: 600;
  font-size: 0.74rem;
}

.timeline {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.real-news {
  border-radius: 18px;
  border: 1px solid rgba(124, 156, 255, 0.34);
  background: rgba(12, 20, 37, 0.78);
  padding: 1.1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.story-stream {
  display: grid;
  gap: 0.7rem;
}

.highlight-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124, 156, 255, 0.4);
  background: linear-gradient(145deg, rgba(124, 156, 255, 0.16), rgba(0, 232, 193, 0.08));
}

.highlight-story img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.story-body {
  padding: 0.85rem;
}

.story-body h3 {
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.42;
}

.story-body p {
  color: var(--muted);
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
}

.story-body a {
  color: #90b7ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
}

.story-body a:hover {
  text-decoration: underline;
}

.mini-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.real-news-card {
  border-radius: 12px;
  border: 1px solid rgba(124, 156, 255, 0.36);
  background: linear-gradient(145deg, rgba(124, 156, 255, 0.14), rgba(0, 232, 193, 0.06));
  padding: 0.8rem;
}

.real-news-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid rgba(124, 156, 255, 0.3);
  margin-bottom: 0.55rem;
}

.news-tag {
  display: inline-block;
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 232, 193, 0.4);
  color: #d9fef6;
  background: rgba(0, 232, 193, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
}

.real-news-card h3 {
  margin: 0.55rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.real-news-card a {
  color: #90b7ff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.real-news-card a:hover {
  text-decoration: underline;
}

.news-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.news-gallery {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.news-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(124, 156, 255, 0.35);
}

.quick-facts {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.quick-facts article {
  border-radius: 10px;
  border: 1px solid rgba(124, 156, 255, 0.35);
  background: rgba(124, 156, 255, 0.1);
  padding: 0.62rem;
}

.quick-facts strong {
  font-size: 0.8rem;
  color: #d9e7ff;
}

.quick-facts p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.snapshot-card {
  border-radius: 12px;
  border: 1px solid rgba(124, 156, 255, 0.38);
  background: linear-gradient(145deg, rgba(124, 156, 255, 0.13), rgba(0, 232, 193, 0.08));
  padding: 0.72rem;
}

.snapshot-card span {
  color: #9fdad0;
  font-size: 0.75rem;
  font-weight: 700;
}

.snapshot-card h3 {
  margin: 0.4rem 0 0;
  font-size: 0.94rem;
  line-height: 1.4;
}

.focus-strip {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.focus-strip span {
  border-radius: 10px;
  border: 1px solid rgba(0, 232, 193, 0.38);
  background: linear-gradient(120deg, rgba(0, 232, 193, 0.18), rgba(124, 156, 255, 0.12));
  padding: 0.55rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.outlook-visuals {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.outlook-visuals img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(124, 156, 255, 0.35);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.panel {
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.tracker-intro {
  color: var(--muted);
  margin: 0.2rem 0 0.75rem;
  line-height: 1.5;
  font-size: 0.9rem;
}

.tracker-top {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.tracker-top img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(124, 156, 255, 0.35);
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.pulse-item {
  background: rgba(124, 156, 255, 0.1);
  border: 1px solid rgba(124, 156, 255, 0.35);
  border-radius: 10px;
  padding: 0.55rem;
}

.pulse-item span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.pulse-item strong {
  font-size: 0.96rem;
}

.signal-timeline {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.signal-timeline article {
  border: 1px solid rgba(124, 156, 255, 0.35);
  border-radius: 10px;
  background: rgba(124, 156, 255, 0.1);
  padding: 0.55rem;
}

.signal-timeline span {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: #9eddd0;
}

.signal-timeline p {
  margin: 0.26rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.tracker-bullets {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.48;
  font-size: 0.85rem;
}

.tracker-bullets strong {
  color: var(--text);
}

.link-btn {
  display: inline-block;
  margin: 0.3rem 0 1rem;
  color: #06101f;
  background: linear-gradient(120deg, var(--accent2), #91ffe6);
  text-decoration: none;
  font-weight: 700;
  padding: 0.52rem 0.9rem;
  border-radius: 10px;
}

.headlines {
  color: var(--muted);
  line-height: 1.52;
  padding-left: 1.1rem;
}

.meters {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.meter-row {
  display: grid;
  gap: 0.28rem;
}

.meter-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.meter {
  height: 8px;
  background: rgba(124, 156, 255, 0.15);
  border-radius: 999px;
  border: 1px solid rgba(124, 156, 255, 0.28);
  overflow: hidden;
}

.meter i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.mini-cards article {
  padding: 0.55rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(124, 156, 255, 0.09);
}

.mini-cards strong {
  font-size: 0.86rem;
}

.mini-cards p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.headlines strong {
  color: var(--text);
}

.panel img {
  width: 100%;
  margin-top: 0.9rem;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.footer {
  padding: 1rem 0 2rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(2rem, 1.5rem) scale(1.08);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-45%);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .stats,
  .cards,
  .split,
  .gen-grid,
  .compare-board {
    grid-template-columns: 1fr;
  }

  .example-cards-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .web-visual-strip {
    grid-template-columns: 1fr;
  }

  .visual-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .pulse-grid,
  .mini-cards,
  .growth-metrics,
  .era-compare,
  .news-grid,
  .quick-facts,
  .snapshot-grid,
  .focus-strip,
  .mini-story-grid,
  .news-gallery,
  .outlook-visuals {
    grid-template-columns: 1fr;
  }

  .highlight-story {
    grid-template-columns: 1fr;
  }

  .tracker-top {
    grid-template-columns: 1fr;
  }

  .chart-shell {
    min-height: 300px;
    height: 320px;
  }

  .hero-image img {
    height: 260px;
    min-height: 260px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .nav {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .signal-row,
html[dir="rtl"] .growth-ribbon,
html[dir="rtl"] .focus-strip {
  justify-content: flex-end;
}

html[dir="rtl"] .headlines,
html[dir="rtl"] .tracker-bullets {
  padding-left: 0;
  padding-right: 1.1rem;
}
