/* ==========================================================================
   CronPulse API — Modern B2B SaaS Landing Page Stylesheet
   Color Palette:
   - Primary Dark Background: #080c18
   - Glass Card BG: rgba(15, 23, 42, 0.65)
   - Accent Amber: #f59e0b
   - Accent Amber Light: #fbbf24
   - Accent Emerald: #10b981
   - Accent Emerald Light: #34d399
   - Border Color: rgba(255, 255, 255, 0.08)
   ========================================================================== */

:root {
  --bg-dark: #080c18;
  --bg-card: rgba(15, 23, 42, 0.7);
  --bg-card-hover: rgba(24, 34, 60, 0.85);
  --border-color: rgba(255, 255, 255, 0.09);
  --border-highlight: rgba(245, 158, 11, 0.35);

  --amber-primary: #f59e0b;
  --amber-light: #fbbf24;
  --amber-glow: rgba(245, 158, 11, 0.25);

  --emerald-primary: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: rgba(16, 185, 129, 0.25);

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-code: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #11182e 0%, var(--bg-dark) 70%);
}

/* Ambient Glow Background Orbs */
.glow-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.glow-bg-1 {
  width: 500px;
  height: 500px;
  background: var(--amber-glow);
  top: -100px;
  left: 20%;
  opacity: 0.6;
}

.glow-bg-2 {
  width: 600px;
  height: 600px;
  background: var(--emerald-glow);
  top: 600px;
  right: -100px;
  opacity: 0.4;
}

.glow-bg-3 {
  width: 550px;
  height: 550px;
  background: var(--amber-glow);
  bottom: 200px;
  left: -150px;
  opacity: 0.3;
}

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

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-emerald {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-amber { color: var(--amber-primary) !important; }
.text-emerald { color: var(--emerald-primary) !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber-primary) 0%, #d97706 100%);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--amber-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber-primary) 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-color);
}

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

.btn-glass {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-glass:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, #059669 100%);
  color: #000000;
  font-weight: 700;
}

.btn-emerald:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-primary) 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-amber-outline {
  background: rgba(245, 158, 11, 0.08);
  color: var(--amber-primary);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.btn-amber-outline:hover {
  background: rgba(245, 158, 11, 0.18);
  border-color: var(--amber-primary);
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.glow-amber {
  box-shadow: 0 0 25px var(--amber-glow);
}

.glow-emerald {
  box-shadow: 0 0 25px var(--emerald-glow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 24, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.badge-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  background: var(--amber-glow);
  color: var(--amber-primary);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-sm);
  vertical-align: middle;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: #ffffff;
}

.header-actions {
  display: flex;
  gap: 0.8rem;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-light);
  margin-bottom: 1.8rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-primary);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 900px;
  margin: 0 auto 1.4rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-metrics-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  max-width: 880px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.metric-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-divider {
  width: 1px;
  height: 28px;
  background: var(--border-color);
}

/* Sections Base */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-primary);
  margin-bottom: 0.5rem;
}

.section-tag.amber {
  color: var(--amber-primary);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* Code Sandbox Section */
.sandbox-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid var(--border-color);
}

.sandbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 1rem;
}

.endpoint-selector, .lang-selector {
  display: flex;
  gap: 0.4rem;
}

.endpoint-tab, .lang-tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.endpoint-tab:hover, .lang-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.endpoint-tab.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.lang-tab.active {
  background: var(--amber-glow);
  color: var(--amber-light);
  border-color: rgba(245, 158, 11, 0.4);
  font-weight: 600;
}

.method-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;

}

.method-badge.post {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.sandbox-body {
  position: relative;
  padding: 1.5rem;
  background: #050811;
}

.code-wrapper {
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

pre {
  font-family: var(--font-code);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e5e7eb;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.sandbox-footer {
  padding: 0.8rem 1.2rem;
  background: rgba(15, 23, 42, 0.9);
  border-top: 1px solid var(--border-color);
}

.response-preview-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-indicator-dot.green {
  background-color: var(--emerald-primary);
  box-shadow: 0 0 8px var(--emerald-primary);
}

.response-label {
  color: var(--text-muted);
  font-weight: 500;
}

.response-code {
  font-family: var(--font-code);
  color: var(--emerald-light);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Live Demo Interactive Sandbox Grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
}

.demo-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.demo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.demo-card-header h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-live {
  font-size: 0.75rem;
  color: var(--emerald-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.pulse-emerald {
  width: 6px;
  height: 6px;
  background: var(--emerald-primary);
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.input-with-prefix {
  display: flex;
  align-items: center;
  background: rgba(5, 8, 17, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.input-with-prefix .prefix {
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  font-family: var(--font-code);
  font-size: 0.85rem;
  border-right: 1px solid var(--border-color);
}

.input-with-prefix input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem 0.8rem;
  color: var(--amber-light);
  font-family: var(--font-code);
  font-size: 0.9rem;
  outline: none;
}

.custom-select {
  background: rgba(5, 8, 17, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.8rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.badge-embed-box {
  background: rgba(5, 8, 17, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.8rem;
}

.badge-embed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.badge-embed-header label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-text-copy {
  background: transparent;
  border: none;
  color: var(--amber-primary);
  font-size: 0.75rem;
  cursor: pointer;
  font-weight: 600;
}

.btn-text-copy:hover {
  text-decoration: underline;
}

.badge-embed-box input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  color: var(--text-muted);
  font-family: var(--font-code);
  font-size: 0.75rem;
}

/* Badge Display Side */
.badge-display-panel {
  background: rgba(10, 16, 32, 0.85);
}

.state-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  transition: all var(--transition-normal);
}

.state-pill.down {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.state-pill.healthy {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.svg-preview-container {
  background: rgba(5, 8, 17, 0.9);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
}

.svg-preview-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.svg-badge-wrapper {
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s ease;
}

.svg-badge-wrapper:hover {
  transform: scale(1.04);
}

/* Stats Row */
.live-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.stat-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  padding: 0.8rem 0.6rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.stat-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Event Audit Log */
.event-log-container {
  background: rgba(5, 8, 17, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.8rem;
}

.event-log-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-color);
}

.event-log-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 140px;
  overflow-y: auto;
}

.log-item {
  font-family: var(--font-code);
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInLog 0.3s ease;
}

@keyframes fadeInLog {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.log-item.success {
  border-left: 3px solid var(--emerald-primary);
  color: #d1fae5;
}

.log-item.danger {
  border-left: 3px solid #ef4444;
  color: #fecaca;
}

.log-item .time {
  color: var(--text-dim);
  font-size: 0.7rem;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.feature-card {
  padding: 2rem;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.feature-icon.amber-glow {
  background: var(--amber-glow);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.feature-icon.emerald-glow {
  background: var(--emerald-glow);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Pricing Section */
.pricing-card-wrapper {
  max-width: 540px;
  margin: 0 auto;
}

.pricing-card {
  padding: 3rem 2.5rem;
  position: relative;
  text-align: center;
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.15);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber-primary) 0%, #d97706 100%);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px var(--amber-glow);
}

.pricing-header {
  margin-bottom: 2rem;
}

.plan-title {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: flex-baseline;
  justify-content: center;
  gap: 0.2rem;
}

.plan-price .currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber-primary);
}

.plan-price .amount {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.plan-price .period {
  color: var(--text-muted);
  font-size: 1rem;
}

.plan-features {
  text-align: left;
  margin-bottom: 2.2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.8rem;
}

.plan-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--emerald-primary);
  flex-shrink: 0;
}

.guarantee-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: #03050c;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 3rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--amber-primary);
}

.footer-col code {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--emerald-light);
}

.brand-col .footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 300px;
}

.brand-col .copyright {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.status-dot-green {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--emerald-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--emerald-primary);
  margin-right: 0.4rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-metrics-bar {
    gap: 1rem;
    padding: 1rem;
  }

  .metric-divider {
    display: none;
  }

  .live-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
