/* --- CSS CONFIGURATIONS & DESIGN TOKENS --- */
:root {
  /* DARK THEME SYSTEM PALETTE */
  --cx-bg: #0C0F17;
  --cx-surface: #161B26;
  --cx-surface-alt: #1F2633;
  --cx-accent: #00E5FF; /* Cyan Neon */
  --cx-accent-hover: #00B3CC;
  --cx-accent-rgb: 0, 229, 255;
  --cx-text-light: #F8FAFC;
  --cx-text-muted: #94A3B8;
  --cx-border-color: #2D3748;
  --cx-gradient: linear-gradient(135deg, #00E5FF 0%, #7000FF 100%);

  /* FONTS CHOSEN */
  --cx-font-display: 'Montserrat', sans-serif;
  --cx-font-body: 'Poppins', sans-serif;

  /* SIZING & BORDERS (SOFT style chosen) */
  --cx-width: 1180px;
  --cx-radius: 14px;

  /* SHADOW DEPTH (RAISED style chosen) */
  --cx-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.45), 0 8px 10px -6px rgba(0, 0, 0, 0.45);
}

/* Base style resets */
html, body {
  background-color: var(--cx-bg);
  color: var(--cx-text-light);
  font-family: var(--cx-font-body);
  min-height: 100vh;
  position: relative;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.cx-page-base {
  display: flex;
  flex-direction: column;
}

/* Custom Extra Small text standard */
.text-xxs {
  font-size: 0.6875rem;
}

/* Container shell constraint applied only to content blocks, not header/footer fluid backgrounds */
.cx-shell {
  width: 100%;
  max-width: var(--cx-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header style styling */
.cx-top-canopy {
  background-color: rgba(12, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cx-border-color);
}

.cx-brand-name {
  font-family: var(--cx-font-display);
  color: var(--cx-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Headings case setting (UPPERCASE choice) */
.cx-prime-heading,
.cx-section-title,
.cx-vouch-heading,
.cx-systemic-item h3 {
  font-family: var(--cx-font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* Alert dynamic banner */
.cx-wellness-strip {
  background-color: var(--cx-surface);
  border-left: 4px solid var(--cx-accent);
  border-radius: var(--cx-radius);
  box-shadow: var(--cx-shadow);
}

/* Showcase Pills styling */
.cx-pill-item {
  background-color: var(--cx-surface-alt);
  border: 1px solid var(--cx-border-color);
  color: var(--cx-accent);
  border-radius: 999px; /* Soft Pill inside core design */
}

/* Price presentation (BADGE layout styling) */
.cx-price-tag-badge {
  background-color: var(--cx-surface);
  border: 2px solid var(--cx-accent);
  color: var(--cx-accent);
  font-family: var(--cx-font-display);
  font-size: 2rem;
  font-weight: 800;
  padding: 0.5rem 1.5rem;
  border-radius: var(--cx-radius);
  display: inline-block;
  letter-spacing: 0.05em;
  box-shadow: 0 0 15px rgba(var(--cx-accent-rgb), 0.15);
}

/* Absolute CTA block placement */
.cx-deal-anchor {
  background-color: rgba(22, 27, 38, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--cx-border-color);
  border-radius: var(--cx-radius);
  box-shadow: var(--cx-shadow);
}

/* CTA Action Trigger Button styling */
.cx-action-trigger {
  background-color: var(--cx-accent);
  color: #030712;
  font-family: var(--cx-font-display);
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}

.cx-action-trigger:hover {
  background-color: var(--cx-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(var(--cx-accent-rgb), 0.5);
}

/* Image Visual Framing */
.cx-img-vessel {
  background-color: var(--cx-surface);
  border-radius: var(--cx-radius);
  border: 1px solid var(--cx-border-color);
  box-shadow: var(--cx-shadow);
}

.cx-product-visual {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* Features elements styling */
.cx-circle-shield {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--cx-accent-rgb), 0.08);
  border: 2px solid rgba(var(--cx-accent-rgb), 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cx-accent);
  flex-shrink: 0;
}

/* Testimonial Panel structure */
.cx-vouch-panel {
  position: relative;
  background-color: var(--cx-surface-alt);
  border: 1px solid var(--cx-border-color);
  border-radius: var(--cx-radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--cx-shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cx-vouch-panel:hover {
  transform: translateY(-4px);
}

.cx-vouch-quote {
  position: absolute;
  right: 1.5rem;
  top: 0rem;
  font-size: 7rem;
  font-family: var(--cx-font-display);
  color: rgba(var(--cx-accent-rgb), 0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.cx-vouch-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cx-gradient);
  color: #030712;
  font-family: var(--cx-font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Footer layout rules */
.cx-ground-floor {
  background-color: rgba(12, 15, 23, 0.95);
  border-top: 1px solid var(--cx-border-color);
  color: var(--cx-text-muted);
}

.cx-nav-link {
  color: var(--cx-text-muted);
  text-decoration: none;
}

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