:root {
  /* Zeaxan custom light color palette definition */
  --ze-bg-canvas: #f8fafc;
  --ze-bg-surface: #ffffff;
  --ze-bg-surface-tint: #f1f5f9;
  
  --ze-accent-brand: #0284c7;
  --ze-accent-brand-hover: #0369a1;
  --ze-accent-brand-light: #e0f2fe;
  
  --ze-text-dominant: #0f172a;
  --ze-text-subtle: #475569;
  --ze-text-on-accent: #ffffff;
  
  /* Geometric Variables */
  --ze-container-max: 1180px;
  --ze-radius-soft: 14px;
  --ze-shadow-raised: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  
  /* Fonts selection from instructions */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* Base resets and configuration */
body {
  font-family: var(--font-body);
  background-color: var(--ze-bg-canvas);
  color: var(--ze-text-subtle);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container limits applied exclusively to contents */
.ze-shell {
  max-width: var(--ze-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

/* Header customization styling */
.ze-header-bar {
  background-color: var(--ze-accent-brand);
  color: var(--ze-text-on-accent);
}

.ze-brand-logo-text {
  font-family: var(--font-display);
  letter-spacing: 0.15em;
}

/* Typography styles matching instructions custom names */
.ze-headline-hero {
  font-family: var(--font-display);
  color: var(--ze-text-dominant);
  text-transform: uppercase; /* Heading-case random outcome: uppercase */
  font-weight: 800;
  line-height: 1.15;
}

.ze-passage-lead {
  color: var(--ze-text-dominant);
  font-family: var(--font-body);
}

.ze-passage-body {
  color: var(--ze-text-subtle);
  font-family: var(--font-body);
}

/* Badge Price display integration */
.ze-tag-price {
  background-color: var(--ze-accent-brand-light);
  color: var(--ze-accent-brand);
  border-radius: var(--ze-radius-soft);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

/* CTA Trigger Button execution styling */
.ze-trigger-action {
  background-color: var(--ze-accent-brand);
  color: var(--ze-text-on-accent);
  border-radius: var(--ze-radius-soft);
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.4);
}

.ze-trigger-action:hover {
  background-color: var(--ze-accent-brand-hover);
}

/* Benefit Pills (rounded-badges) style */
.ze-badge-pill {
  background-color: var(--ze-accent-brand-light);
  color: var(--ze-accent-brand);
  border-radius: 999px; /* Pill styled badges */
}

/* Guarantee (Shield) layout */
.ze-shield-stamp {
  border-radius: var(--ze-radius-soft);
}

/* Product wrapper for images */
.ze-visual-wrapper {
  border-radius: var(--ze-radius-soft);
  box-shadow: var(--ze-shadow-raised);
}

/* Sticky styling for desktop CTA panel */
@media (min-width: 1024px) {
  .ze-sticky-cta-panel {
    position: sticky;
    bottom: 2rem;
    z-index: 30;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  }
}

.ze-sticky-cta-panel {
  border-radius: var(--ze-radius-soft);
}

/* Features lists node structure */
.ze-feature-node {
  border-radius: var(--ze-radius-soft);
  box-shadow: var(--ze-shadow-raised);
}

.ze-icon-circle-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--ze-accent-brand-light);
  color: var(--ze-accent-brand);
}

/* Testimonials unit specific structure (Preset B: horizontal visual style) */
.ze-opinion-item {
  border-radius: var(--ze-radius-soft);
  box-shadow: var(--ze-shadow-raised);
  border-top: 4px solid var(--ze-accent-brand); /* Subtle structural aesthetic lift */
}

.ze-author-avatar {
  background-color: var(--ze-accent-brand);
  color: var(--ze-text-on-accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

/* Footer structure and styling */
.ze-footer-bar {
  background-color: #0f172a;
  color: #f8fafc;
}

.ze-footer-bar a {
  color: #cbd5e1;
  transition: color 0.15s ease;
}

.ze-footer-bar a:hover {
  color: #ffffff;
}