/* CSS Variables - Color Palette from Logo */
:root {
  --bg: #07080c;          /* deep near-black */
  --bg-alt: #0b0d14;
  --text: #eaeef7;
  --muted: #a9b1c7;

  --cyan: #6cf9ff;        /* neon cyan from logo */
  --magenta: #ff4df0;     /* neon magenta/pink */
  --purple: #7d59ff;      /* neon purple */
  --green: #78ff6c;       /* subtle neon green accent */
  --accent: #c1b7ff;      /* gentle highlight */

  --card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 0 0 2px rgba(255,255,255,0.06), 0 12px 40px rgba(0,0,0,.55);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: ui-monospace, Menlo, Consolas, "Courier New", monospace;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  
  /* Layered background with neon vignettes */
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(125, 89, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(108, 249, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 77, 240, 0.08) 0%, transparent 50%);
}

/* Image rendering for pixel art */
img {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

/* CRT Overlay */
.crt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  
  /* Scanlines */
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 4px
  );
  
  animation: flicker 0.15s infinite linear alternate;
}

@keyframes flicker {
  0% { opacity: 1; }
  98% { opacity: 1; }
  99% { opacity: 0.98; }
  100% { opacity: 0.97; }
}

/* Scanline Sweep */
.scanline-sweep {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan),
    transparent
  );
  pointer-events: none;
  z-index: 999;
  animation: scanline-sweep 6s linear infinite;
}

@keyframes scanline-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(7, 8, 12, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: start;
}

.nav-logo {
  width: 32px;
  height: 32px;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent);
}

.nav-center {
  display: flex;
  justify-content: center;
  justify-self: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: end;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link:visited {
  color: var(--muted);
}

.nav-link:link {
  color: var(--muted);
}

.nav-ca {
  color: var(--muted);
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  user-select: all;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-ca:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--muted);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--cyan);
  transform: translateY(-1px);
}

.social-icon {
  width: 22px;
  height: 22px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-logo {
  width: 260px;
  height: 260px;
  display: block;
}

.logo-glitch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 33%;
  background: conic-gradient(
    from 0deg,
    var(--cyan),
    var(--magenta),
    var(--purple),
    var(--cyan)
  );
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.3;
  animation: logo-glitch 3.5s ease-in-out infinite;
}

@keyframes logo-glitch {
  0%, 90%, 100% { 
    transform: translateX(0);
    opacity: 0;
  }
  91%, 94% { 
    transform: translateX(2px);
    opacity: 0.3;
  }
  92%, 93% { 
    transform: translateX(-2px);
    opacity: 0.5;
  }
}

/* Glitch Text Effect */
.glitch {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}

.glitch::before {
  color: var(--cyan);
  animation: glitch-1 2.5s infinite;
}

.glitch::after {
  color: var(--magenta);
  animation: glitch-2 2.5s infinite;
}

@keyframes glitch-1 {
  0%, 90%, 100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
  91% {
    transform: translateX(-2px);
    clip-path: inset(0 0 85% 0);
  }
  92% {
    transform: translateX(2px);
    clip-path: inset(15% 0 0 0);
  }
  93% {
    transform: translateX(-1px);
    clip-path: inset(50% 0 30% 0);
  }
}

@keyframes glitch-2 {
  0%, 90%, 100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
  91% {
    transform: translateX(2px);
    clip-path: inset(80% 0 0 0);
  }
  92% {
    transform: translateX(-2px);
    clip-path: inset(0 0 70% 0);
  }
  93% {
    transform: translateX(1px);
    clip-path: inset(25% 0 40% 0);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* Buttons */
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: white;
  box-shadow: 0 0 20px rgba(125, 89, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 0 30px rgba(125, 89, 255, 0.5);
}

.btn-secondary {
  background: rgba(108, 249, 255, 0.1);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 20px rgba(108, 249, 255, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-1px) scale(1.01);
  background: rgba(108, 249, 255, 0.2);
  box-shadow: 0 0 30px rgba(108, 249, 255, 0.4);
}

/* Key Facts */
.key-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.fact-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.fact-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.fact-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
}

/* Sections */
.rewards,
.how-it-works {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 20px 60px rgba(0,0,0,.7);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--cyan);
}

.icon {
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text);
}

.card-description {
  color: var(--muted);
  line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 20px 60px rgba(0,0,0,.7);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--cyan);
}

.step-icon .icon {
  width: 100%;
  height: 100%;
}

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text);
}

.step-description {
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 24px;
  height: 24px;
}

.footer-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--accent);
}

.footer-note {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

/* Responsive Design */
@media (max-width: 860px) {
  .nav {
    padding: 1rem;
  }
  
  .nav-right {
    gap: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero {
    padding: 5rem 1rem 3rem;
  }
  
  .hero-logo {
    width: 150px;
    height: 150px;
  }
  
  .glitch {
    font-size: 2rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .key-facts {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cards-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 120px;
    height: 120px;
  }
  
  .glitch {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .crt-overlay,
  .scanline-sweep,
  .logo-glitch-overlay,
  .glitch::before,
  .glitch::after {
    animation: none;
  }
  
  * {
    transition-duration: 0.01ms !important;
  }
}



/* Multi-page Navigation Styles */
.nav-link.active {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(193, 183, 255, 0.2);
    box-shadow: 0 0 10px rgba(193, 183, 255, 0.3);
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(125, 89, 255, 0.1) 0%, rgba(108, 249, 255, 0.05) 100%);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Overview Page Styles */
.overview-content {
    padding: 80px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.overview-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(193, 183, 255, 0.2);
    transform: translateY(-2px);
}

.stats-section {
    margin: 4rem 0;
    text-align: center;
}

.stats-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.cta-description {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Rewards Page Styles */
.rewards-overview {
    padding: 60px 0;
}

.featured-card {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(193, 183, 255, 0.3);
}

.rewards-breakdown {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.breakdown-item {
    text-align: center;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.breakdown-percentage {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.breakdown-label {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text);
}

.breakdown-description {
    color: var(--muted);
    font-size: 0.9rem;
}

.reward-calculation {
    padding: 60px 0;
}

.calculation-steps {
    display: grid;
    gap: 2rem;
}

.calc-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.reward-examples {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.example-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.example-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-align: center;
}

.example-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.stat:last-child {
    border-bottom: none;
    font-weight: bold;
}

.stat-label {
    color: var(--muted);
}

.stat-value {
    color: var(--text);
    font-weight: bold;
}

.example-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 77, 240, 0.1);
    border: 1px solid rgba(255, 77, 240, 0.3);
    border-radius: 8px;
    text-align: center;
}

.rewards-faq {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.faq-answer {
    color: var(--muted);
    line-height: 1.6;
}

.rewards-cta {
    padding: 60px 0;
    text-align: center;
}

/* How It Works Page Styles */
.how-it-works-main {
    padding: 60px 0;
}

.featured-step {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(193, 183, 255, 0.3);
}

.technical-details {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.tech-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.tech-content p {
    margin-bottom: 1rem;
    color: var(--muted);
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 0.5rem 0;
    color: var(--text);
    position: relative;
    padding-left: 1.5rem;
}

.tech-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.transaction-flow {
    padding: 60px 0;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.flow-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
}

.flow-icon {
    margin-bottom: 1rem;
}

.flow-icon .icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
}

.flow-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.flow-description {
    font-size: 0.9rem;
    color: var(--muted);
}

.flow-arrow {
    font-size: 2rem;
    color: var(--accent);
    font-weight: bold;
}

.getting-started {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.guide-steps {
    display: grid;
    gap: 3rem;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.guide-number {
    background: var(--accent);
    color: var(--bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.guide-content {
    flex: 1;
}

.guide-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.guide-description {
    margin-bottom: 1rem;
    color: var(--muted);
}

.guide-tips {
    background: rgba(108, 249, 255, 0.1);
    border: 1px solid rgba(108, 249, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.guide-tips ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.guide-tips li {
    color: var(--text);
    margin-bottom: 0.25rem;
}

.how-faq {
    padding: 60px 0;
}

.how-cta {
    padding: 60px 0;
    text-align: center;
}

/* Responsive Design for Multi-page */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .flow-diagram {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
    }
    
    .calc-step {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}


/* Single Screen Layout for Overview Page */
body.overview-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

body.overview-page .header {
    flex-shrink: 0;
}

body.overview-page main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 0;
}

body.overview-page .hero {
    padding: 0.5rem 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.overview-page .hero-content {
    max-width: 800px;
    text-align: center;
}

body.overview-page .hero-logo-container {
    margin-bottom: 0.8rem;
}

body.overview-page .hero-logo {
    width: 90px;
    height: 90px;
}

body.overview-page .hero-title {
    font-size: clamp(2.08rem, 5.2vw, 3.64rem);
    margin-bottom: 0.78rem;
}

body.overview-page .hero-subtitle {
    font-size: 1.235rem;
    margin-bottom: 1.56rem;
}

body.overview-page .hero-ctas {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

body.overview-page .hero-ctas .btn {
    min-width: 208px;
    padding: 1.04rem 1.95rem;
    font-size: 1.235rem;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.overview-page .key-facts {
    gap: 1rem;
    margin-bottom: 0;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

body.overview-page .fact-item {
    padding: 1.3rem 1.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10.4px;
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: auto;
    flex: none;
}

body.overview-page .fact-label {
    font-size: 1.04rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.39rem;
    display: block;
}

body.overview-page .fact-value {
    font-size: 1.56rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    display: block;
}

body.overview-page .footer {
    flex-shrink: 0;
    padding: 0.6rem 0;
    margin-top: 0;
}

body.overview-page .footer-note {
    margin-top: 0.2rem;
}

body.overview-page .footer-note p {
    font-size: 0.8rem;
}

/* Mobile adjustments for single screen */
@media (max-width: 768px) {
    body.overview-page .hero-logo {
        width: 84.5px;
        height: 84.5px;
    }
    
    body.overview-page .hero-title {
        font-size: clamp(1.56rem, 4.16vw, 2.34rem);
    }
    
    body.overview-page .hero-subtitle {
        font-size: 1.105rem;
    }
    
    body.overview-page .hero-ctas {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    body.overview-page .hero-ctas .btn {
        min-width: 260px;
        width: 100%;
        max-width: 364px;
    }
    
    body.overview-page .key-facts {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    body.overview-page .fact-item {
        padding: 1.04rem 1.56rem;
        min-width: auto;
        max-width: none;
    }
    
    body.overview-page .footer {
        padding: 0.4rem 0;
    }
}

