/* ==========================================================================
   getzendr.nl - CSS Architecture for The Technical Authority Engine
   Design System: Premium Dark Tech (Vercel / Linear Aesthetic)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Colors */
  --bg-deep: #05070c;
  --bg-card: #0c101b;
  --bg-card-hover: #121829;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(37, 99, 235, 0.4);
  
  --text-primary: #ededed;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --accent-red: #ef4444;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sRGB, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* CSS Reset & Core Standards */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Base Layout Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
}

p {
  color: var(--text-secondary);
}

strong {
  color: #ffffff;
  font-weight: 600;
}

/* Reusable Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Background Gradients & Glow Effects */
.glow-radial-bg {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.03) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.glow-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(12, 16, 27, 0.8) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--x, 0px) var(--y, 0px), rgba(59, 130, 246, 0.1), transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.glow-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

.glow-card:hover::before {
  opacity: 1;
}

/* Navigation & Header */
.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(5, 7, 12, 0.8);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-dot {
  color: var(--accent-blue);
  font-weight: 900;
}

/* Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: -0.01em;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse 2s infinite ease-in-out;
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 6.5rem 0 4.5rem 0;
  text-align: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.hero-title span {
  background: linear-gradient(to right, #ffffff, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 0.5rem;
}

.btn-primary {
  background-color: #ffffff;
  color: var(--bg-deep);
  border: 1px solid #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background-color: var(--bg-deep);
  color: #ffffff;
  border-color: var(--border-subtle);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Section Structural Standards */
.section-headline {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.page-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-subtle);
}

/* Interactive Timeline Grid (The 5-Day Blueprint) */
.timeline-scaffold {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 2rem;
  padding: 2.25rem;
  cursor: pointer;
}

.step-day-circle {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-day-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.step-day-lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.timeline-step:hover .step-day-circle {
  border-color: var(--accent-blue);
  background-color: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* Expandable details styling */
.step-details-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.timeline-step.active .step-details-drawer {
  max-height: 250px;
}

.curriculum-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.curriculum-bullet svg {
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

@media(max-width: 768px) {
  .timeline-step {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
  .step-day-circle {
    width: 60px;
    height: 60px;
  }
}

/* The Anti-Cringe Manifesto Style */
.manifesto-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.manifesto-card {
  padding: 2.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.manifesto-card.bad {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(239, 68, 68, 0.02) 100%);
}

.manifesto-card.good {
  border-color: rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.manifesto-type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.bad .manifesto-type {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
}

.good .manifesto-type {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.manifesto-quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manifesto-item {
  border-left: 2px solid var(--border-subtle);
  padding-left: 1rem;
}

.bad .manifesto-item {
  border-color: rgba(239, 68, 68, 0.2);
}

.good .manifesto-item {
  border-color: rgba(16, 185, 129, 0.2);
}

.item-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.item-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media(max-width: 768px) {
  .manifesto-board {
    grid-template-columns: 1fr;
  }
}

/* Pricing Section & Interactive Sandbox simulator */
.pricing-structure {
  max-width: 500px;
  margin: 0 auto;
}

.checkout-box {
  padding: 3rem 2.5rem;
  text-align: center;
}

.pricing-header {
  font-family: var(--font-mono);
  color: var(--accent-blue);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing {
  margin-bottom: 2rem;
}

.original-price {
  font-size: 1.15rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.current-price {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.current-price-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: block;
  margin-top: 0.25rem;
}

.value-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.value-dot {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.value-dot svg {
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Live Simulator Console */
.terminal-simulator {
  margin-top: 2rem;
  background-color: #030408;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.terminal-header {
  background-color: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terminal-dots {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.terminal-body {
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  min-height: 180px;
  line-height: 1.5;
}

.terminal-line {
  margin-bottom: 0.4rem;
}

.terminal-line.success {
  color: var(--accent-green);
}

.terminal-line.blue {
  color: var(--accent-blue);
}

.terminal-input-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.terminal-prompt {
  color: var(--accent-cyan);
}

.terminal-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  width: 100%;
}

/* Footer styling */
.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  background-color: rgba(3, 4, 8, 0.4);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   welcome.php Styles
   ========================================================================== */
.welcome-screen {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  background-color: var(--bg-deep);
}

.welcome-box {
  width: 100%;
  max-width: 580px;
  padding: 3rem 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(12, 16, 27, 0.95) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.8), 0 0 30px rgba(16, 185, 129, 0.05);
}

.welcome-icon-wrap {
  width: 72px;
  height: 72px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem auto;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.welcome-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.welcome-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.dispatch-receipt {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-bottom: 2rem;
}

.receipt-header {
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

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

.receipt-value {
  color: var(--text-primary);
  font-weight: 500;
}

.receipt-status-ok {
  color: var(--accent-green);
}

.welcome-loading-bar {
  height: 2px;
  background-color: var(--border-subtle);
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.welcome-loading-fill {
  background-color: var(--accent-green);
  height: 100%;
  width: 0%;
  animation: fillProgress 3s forwards cubic-bezier(0.1, 0.8, 0.2, 1);
}

@keyframes fillProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
