/* =============================================
   ARGONAUT AI — GLOBAL STYLES
   Color palette: black + gold (space theme)
   ============================================= */

:root {
  --black:        #000000;
  --black-soft:   #080808;
  --black-card:   #0e0e0e;
  --black-border: #1a1a1a;
  --gold:         #FFB800;
  --gold-bright:  #FFD700;
  --gold-medium:  #D4AF37;
  --gold-dark:    #8B6914;
  --gold-ultra:   #FFF0A0;
  --gold-tint:    rgba(255, 184, 0, 0.08);
  --gold-glow:    rgba(255, 184, 0, 0.25);
  --gold-glow2:   rgba(255, 184, 0, 0.5);
  --white:        #FFFFFF;
  --text-main:    #F5F0E8;
  --text-muted:   #888888;
  --text-dim:     #555555;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
}

/* -------- RESET & BASE -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--black);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Star-field canvas background */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

main { position: relative; z-index: 1; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* -------- TYPOGRAPHY -------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-medium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-tint);
  border: 1px solid rgba(255,184,0,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--gold-glow2);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(255,184,0,0.4);
}
.btn-outline:hover {
  background: var(--gold-tint);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

/* -------- NAV -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--black-border);
}

/* Single horizontal row: logo | links | cta | hamburger */
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo — left side, as big as possible */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;   /* pushes links + cta to the right */
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255,184,0,0.35));
  transition: filter var(--transition);
}

.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 16px rgba(255,184,0,0.75));
}

.nav-logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.nav-logo-ai {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Nav links — horizontal list, no wrapping */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* CTA buttons */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
  padding: 24px;
  flex-direction: column;
  gap: 24px;
}
.nav-drawer.open { display: flex; }

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nav-drawer-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-drawer-links a:hover,
.nav-drawer-links a.active { color: var(--gold); }

.nav-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-drawer-cta .btn { width: 100%; justify-content: center; }

/* Mobile breakpoint */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: flex; }
}

/* -------- HERO -------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,184,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-tint);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold); }
  50% { opacity: 0.5; box-shadow: 0 0 4px var(--gold); }
}

.hero-title { margin-bottom: 24px; }

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--black-border);
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero visual card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-orb {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.12) 0%, transparent 70%);
  animation: orb-pulse 4s ease-in-out infinite;
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,184,0,0.15);
  animation: orb-rotate 20s linear infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.7; }
}
@keyframes orb-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-orb-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 40px rgba(255,184,0,0.45));
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Ring orbits */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,184,0,0.12);
}
.orbit-ring-1 {
  width: 300px; height: 300px;
  animation: orb-rotate 15s linear infinite;
}
.orbit-ring-2 {
  width: 380px; height: 380px;
  animation: orb-rotate 25s linear infinite reverse;
}

/* Orbit dot */
.orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  top: -4px; left: 50%;
  transform: translateX(-50%);
}

/* -------- TERMINAL TICKER -------- */
.ticker {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-inner {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.ticker-inner:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-item::before { content: '⚓'; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------- CARDS -------- */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--gold-tint);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(255,184,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,184,0,0.08);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: var(--gold-tint);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.card h3 { margin-bottom: 10px; position: relative; z-index: 1; }
.card p { color: var(--text-muted); font-size: 0.95rem; position: relative; z-index: 1; }

/* -------- GRID LAYOUTS -------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* -------- STATS BAR -------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-bar { grid-template-columns: 1fr; } }

.stats-bar-item {
  background: var(--black-card);
  padding: 32px 24px;
  text-align: center;
}

.stats-bar-value {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.stats-bar-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* -------- FEATURE LIST -------- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFB800'%3E%3Cpath d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* -------- TAG CHIPS -------- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-tint);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

/* -------- CONTENT TYPE CARD -------- */
.content-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.content-card:hover {
  border-color: rgba(255,184,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255,184,0,0.08);
}

.content-card-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-card-body { padding: 20px 28px 28px; }

.content-card-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-tint);
  border: 1px solid rgba(255,184,0,0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

/* -------- TIMELINE -------- */
.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot.done { background: var(--gold); }
.timeline-dot.done::after {
  content: '✓';
  font-size: 10px;
  color: var(--black);
  font-weight: 700;
}

.timeline-active { background: rgba(255,184,0,0.15); border-color: var(--gold); animation: pulse-border 2s infinite; }

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-title { margin-bottom: 8px; font-size: 1.15rem; }

.timeline-desc { color: var(--text-muted); font-size: 0.9rem; }

/* -------- STATUS BADGE -------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.status-done { background: rgba(0,200,100,0.12); color: #00C864; border: 1px solid rgba(0,200,100,0.2); }
.status-active { background: rgba(255,184,0,0.12); color: var(--gold); border: 1px solid rgba(255,184,0,0.2); }
.status-soon { background: rgba(100,100,100,0.12); color: var(--text-dim); border: 1px solid var(--black-border); }

.status::before { content: '●'; font-size: 8px; }

/* -------- GLOW DIVIDER -------- */
.glow-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 60px;
}

/* -------- TECH PILLS -------- */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.tech-pill:hover {
  border-color: rgba(255,184,0,0.3);
  color: var(--gold);
}

/* -------- FOOTER -------- */
footer {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 14px 0 20px;
  max-width: 260px;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--black-border);
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold-tint);
  border-color: rgba(255,184,0,0.3);
  color: var(--gold);
}

/* Disclaimer */
.disclaimer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 24px 0;
  text-align: center;
}
.disclaimer p {
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -------- HERO PAGE INNER (non-home) -------- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* -------- LIVE STATUS -------- */
.live-bar {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(0,200,100,0.06);
  border: 1px solid rgba(0,200,100,0.15);
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00C864;
  font-weight: 600;
}

.live-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: #00C864;
  border-radius: 50%;
  box-shadow: 0 0 8px #00C864;
  animation: pulse-dot 2s infinite;
}

/* -------- TERMINAL BLOCK -------- */
.terminal {
  background: #050505;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.terminal-header {
  background: var(--black-card);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--black-border);
}

.terminal-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.terminal-dot:nth-child(1) { background: #FF5F57; }
.terminal-dot:nth-child(2) { background: #FEBC2E; }
.terminal-dot:nth-child(3) { background: #28C841; }

.terminal-title {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: monospace;
}

.terminal-body {
  padding: 24px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  line-height: 2;
}

.terminal-line { display: flex; gap: 10px; }
.terminal-prompt { color: var(--gold); flex-shrink: 0; }
.terminal-cmd { color: #B0B0B0; }
.terminal-output { color: #4AA; margin-left: 20px; }

/* -------- SERVICES PAGE -------- */
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(255,184,0,0.35);
  box-shadow: 0 20px 60px rgba(255,184,0,0.08);
  transform: translateY(-4px);
}

.service-card-top {
  padding: 40px 40px 32px;
  border-bottom: 1px solid var(--black-border);
}

.service-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.service-price-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.service-card-body { padding: 32px 40px 40px; }

/* Price tag */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
}

/* -------- CASES PAGE -------- */
.case-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.case-card:hover {
  border-color: rgba(255,184,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255,184,0,0.07);
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.case-score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.score-bar {
  height: 4px;
  background: var(--black-border);
  border-radius: 2px;
  overflow: hidden;
  margin: 12px 0 16px;
}

.score-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-bright));
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------- SCROLL REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- UTILITY -------- */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }

/* -------- SCROLLBAR -------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
