:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0.08); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08); /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08); /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08); /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08); /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08); /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08); /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
    --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
    --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
    --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
    --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
    --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
    --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
    --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  /* RGB versions for opacity control (dark mode) */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  /* Colorful background palette - Dark Mode */
  --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
  --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
  --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
  --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
  --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
  --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
  --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
  --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

  /* Semantic Color Tokens (Dark Mode) */
  --color-background: var(--color-charcoal-700);
  --color-surface: var(--color-charcoal-800);
  --color-text: var(--color-gray-200);
  --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
  --color-primary: var(--color-teal-300);
  --color-primary-hover: var(--color-teal-400);
  --color-primary-active: var(--color-teal-800);
  --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
  --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
  --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
  --color-border: rgba(var(--color-gray-400-rgb), 0.3);
  --color-error: var(--color-red-400);
  --color-success: var(--color-teal-300);
  --color-warning: var(--color-orange-400);
  --color-info: var(--color-gray-300);
  --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
  --color-btn-primary-text: var(--color-slate-900);
  --color-card-border: rgba(var(--color-gray-400-rgb), 0.15);
  --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
  --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: var(--color-teal-300-rgb);
  --color-error-rgb: var(--color-red-400-rgb);
  --color-warning-rgb: var(--color-orange-400-rgb);
  --color-info-rgb: var(--color-gray-300-rgb);
}

[data-color-scheme="light"] {
  /* RGB versions for opacity control (light mode) */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-secondary-hover);
}

.btn--secondary:active {
  background: var(--color-secondary-active);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}
.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Custom Premium Styles */
:root {
  /* Premium color palette */
  --premium-gold: #ffd700;
  --premium-gold-light: #ffed4e;
  --premium-gold-dark: #e6c200;
  --premium-black: #0a0a0a;
  --premium-dark: #111111;
  --premium-darker: #1a1a1a;
  --premium-gray: #333333;
  --premium-light-gray: #666666;
  --premium-white: #ffffff;
  --premium-accent: rgba(255, 215, 0, 0.1);
  --premium-accent-strong: rgba(255, 215, 0, 0.2);
  
  /* Premium gradients */
  --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #e6c200 100%);
  --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
  --premium-gradient: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  
  /* Animation variables */
  --animation-fast: 0.3s;
  --animation-normal: 0.5s;
  --animation-slow: 0.8s;
  --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--premium-black);
  color: var(--premium-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.05'%3E%3Ccircle cx='7' cy='7' r='1'/%3E%3Ccircle cx='27' cy='27' r='1'/%3E%3Ccircle cx='47' cy='47' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: float 20s ease-in-out infinite;
}

.streaming-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.03) 50%, transparent 100%);
  animation: stream 15s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes stream {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  z-index: 1000;
  transition: all var(--animation-fast) var(--ease-premium);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--premium-white);
}

.logo-accent {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--premium-gold);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: var(--premium-white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all var(--animation-fast) var(--ease-premium);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--animation-fast) var(--ease-premium);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--premium-gold);
  transition: all var(--animation-fast) var(--ease-premium);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: var(--premium-accent);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--premium-gold);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--premium-gold);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Premium Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--animation-fast) var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--premium-black);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--animation-normal) var(--ease-premium);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--premium-white);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
  background: var(--premium-accent);
  border-color: var(--premium-gold);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

.card-icon {
  font-size: 2rem;
}

.card-text {
  color: var(--premium-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Styling */
section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--premium-accent);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  color: var(--premium-gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-accent {
  color: var(--premium-gold);
}

.section-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Why Us Section */
.why-us {
  background: var(--premium-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all var(--animation-normal) var(--ease-premium);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--premium-gradient);
  opacity: 0;
  transition: opacity var(--animation-normal) var(--ease-premium);
}

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

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: grayscale(50%) sepia(100%) hue-rotate(40deg) brightness(1.2);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.feature-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
  transition: width var(--animation-normal) var(--ease-premium);
}

.feature-card:hover .feature-accent {
  width: 60%;
}

/* Pricing Section */
.pricing {
  background: var(--premium-black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--premium-darker);
  border: 2px solid rgba(255, 215, 0, 0.1);
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  transition: all var(--animation-normal) var(--ease-premium);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--premium-gradient);
  opacity: 0;
  transition: opacity var(--animation-normal) var(--ease-premium);
  z-index: 1;
}

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

.pricing-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
}

.pricing-card.popular {
  border-color: var(--premium-gold);
  background: rgba(255, 215, 0, 0.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--premium-black);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.2rem;
  color: var(--premium-gold);
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--premium-gold);
  font-family: 'Playfair Display', serif;
}

.period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.5rem;
}

.plan-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.features-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--premium-gold);
  font-weight: bold;
}

.pricing-btn {
  width: 100%;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  background: transparent;
  color: var(--premium-white);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--animation-fast) var(--ease-premium);
  position: relative;
  z-index: 2;
}

.pricing-btn:hover {
  background: var(--premium-accent);
  border-color: var(--premium-gold);
  transform: translateY(-2px);
}

.pricing-btn.primary {
  background: var(--gold-gradient);
  color: var(--premium-black);
  border-color: var(--premium-gold);
}

.pricing-btn.primary:hover {
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Contact Section */
.contact {
  background: var(--premium-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  transition: all var(--animation-fast) var(--ease-premium);
}

.contact-method:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(10px);
}

.method-icon {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--premium-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.method-info h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.method-info p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-form-container {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 25px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--premium-gold);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--premium-darker);
  border: 2px solid rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  color: var(--premium-white);
  font-family: 'Inter', sans-serif;
  transition: all var(--animation-fast) var(--ease-premium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--premium-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-submit {
  background: var(--gold-gradient);
  color: var(--premium-black);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--animation-fast) var(--ease-premium);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* FAQ Section */
.faq {
  background: var(--premium-black);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--premium-darker);
  transition: all var(--animation-fast) var(--ease-premium);
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all var(--animation-fast) var(--ease-premium);
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-icon {
  transition: transform var(--animation-fast) var(--ease-premium);
  color: var(--premium-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--animation-normal) var(--ease-premium);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--premium-darker);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.link-group h4 {
  color: var(--premium-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.link-group a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color var(--animation-fast) var(--ease-premium);
}

.link-group a:hover {
  color: var(--premium-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--animation-fast) var(--ease-premium);
}

.social-links a:hover {
  background: var(--premium-gold);
  transform: translateY(-2px);
}

/* Animation classes */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--animation-slow) var(--ease-premium);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info .section-header {
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--premium-black);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--animation-fast) var(--ease-premium);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 0 1rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 250px;
  }
}

/* ================= WHY US — BLUEPRINT POSTER ================= */
.whyus-blueprint { position: relative; background: #0b0b0b; color: #e5e7eb; }
.whyus-grid { position:absolute; inset:0; pointer-events:none;
  background-image: radial-gradient(circle at 1px 1px, rgba(234,179,8,0.08) 1px, transparent 1px);
  background-size: 20px 20px; }

.whyus-wrap { display:grid; grid-template-columns: 1fr; gap: 40px; padding-top: 64px; padding-bottom: 72px; }
@media (min-width: 900px) {
  .whyus-wrap { grid-template-columns: 1fr 1.2fr; align-items: center; gap: 56px; }
}

.whyus-badge { display:inline-block; border:1px solid rgba(234,179,8,.3); background: rgba(234,179,8,.1);
  padding:6px 10px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px; letter-spacing: .14em; color: #fde047; border-radius: 999px; }

.whyus-title { margin-top: 12px; font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.1; font-weight: 800; color: #fff; }
.whyus-outline { -webkit-text-stroke: 1px rgba(234,179,8,0.65); color: transparent; }
.whyus-highlight { color: #facc15; }

.whyus-desc { margin-top: 12px; max-width: 48ch; color: #d1d5db; line-height: 1.7; font-size: 15px; }

.whyus-stats { margin-top: 16px; display:flex; flex-wrap: wrap; gap: 8px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.chip { border:1px solid rgba(234,179,8,.3); background: rgba(0,0,0,.4); border-radius: 8px; padding: 6px 10px; font-size: 11px; color:#d1d5db; }

.whyus-gauge-row { margin-top: 24px; display:flex; gap: 16px; align-items: center; }
.whyus-gauge text.whyus-gauge-top { fill: #fff; font-weight: 600; font-size: 18px; }
.whyus-gauge text.whyus-gauge-bottom { fill: #d1d5db; font-size: 10px; }
.whyus-gauge-caption { max-width: 36ch; color: #d1d5db; font-size: 14px; line-height: 1.6; }

.whyus-right { display: grid; gap: 14px; }
.proof-card { display:grid; grid-template-columns: 28px 1fr; align-items: start; gap: 12px;
  border: 1px solid rgba(234,179,8,.25); background: rgba(0,0,0,.5); border-radius: 16px; padding: 16px;
  box-shadow: 0 10px 30px -12px rgba(234,179,8,0.25);
}
.proof-card h4 { margin:0; color:#fff; font-weight: 700; font-size: 16px; }
.proof-card p { margin:6px 0 0; color:#d1d5db; font-size: 14px; }
.proof-icon { width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center;
  border-radius: 6px; background: rgba(234,179,8,.15); color: #fde047; }

/* Diagonal gradient footer */
.whyus-diagonal { height: 48px;
  background: linear-gradient(90deg, rgba(234,179,8,.10), rgba(250,204,21,.10), rgba(234,179,8,.10));
  -webkit-clip-path: polygon(0% 0%,100% 0%,100% 100%,0% 60%);
          clip-path: polygon(0% 0%,100% 0%,100% 100%,0% 60%);
}
/* ============================================================ */


/* ================= WHY US — ART/FLUX EDITION ================= */
.whyus-artflux{ position:relative; background:#0b0b0b; color:#e5e7eb; }
.whyus-af-bg{ position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at 1px 1px, rgba(250,204,21,0.06) 1px, transparent 1px);
  background-size:18px 18px; }
.whyus-af-wrap{ padding-top:64px; padding-bottom:96px; }

/* Marquee */
.whyus-af-marquee{ position:relative; overflow:hidden; margin:0 auto 24px; }
.whyus-af-marquee::before{ content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(234,179,8,.10), rgba(250,204,21,.10), rgba(234,179,8,.10)); z-index:-1; }
.whyus-af-marquee-track{ white-space:nowrap; font-weight:800; font-size:12px; letter-spacing:.3em; color:#fde047; animation:marquee 18s linear infinite; padding:8px 0; }
.whyus-af-marquee-track span{ margin:0 24px; }
@keyframes marquee{ 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }

/* Heading */
.whyus-af-head{ text-align:center; }
.whyus-af-head h2{ font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; font-weight:900;
  font-size: clamp(36px, 5vw, 56px); line-height:1.1; color:#fff; }
.whyus-af-head .hl{ color:#facc15; }
.whyus-af-head .scribble{ width:100%; height:24px; margin-top:8px; }
.whyus-af-head p{ max-width:720px; margin:12px auto 0; color:#d1d5db; line-height:1.7; font-size:14px; text-wrap:balance; }

/* Sticker grid */
.whyus-af-stickers{ margin-top:40px; display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width: 900px){
  .whyus-af-stickers{ grid-template-columns: repeat(3, minmax(0,1fr)); gap:24px; }
}
.sticker{ will-change: transform; }
.r--2{ transform: rotate(-2deg); } .r--1{ transform: rotate(-1deg); }
.r-1{ transform: rotate(1deg); } .r-2{ transform: rotate(2deg); } .r-3{ transform: rotate(3deg); } .r--3{ transform: rotate(-3deg); }
.sticker-card{ position:relative; background:#070707; border:1px solid rgba(234,179,8,.30); border-radius:16px; padding:20px; transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 20px 60px -20px rgba(234,179,8,0.35); }
.sticker-card:hover{ transform: translateY(-4px); }
.sticker-pin{ position:absolute; width:12px; height:12px; background: rgba(250,204,21,.70); border-radius:999px; left:-8px; top:-8px; }
.sticker-pin.pin-b{ right:-8px; bottom:-8px; left:auto; top:auto; }
.sticker-icon{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:12px;
  border:1px solid rgba(234,179,8,.30); background: rgba(0,0,0,.40); color:#fde047; margin-bottom:10px; }
.sticker-card h3{ margin:0; font-size:16px; font-weight:900; color:#fff; letter-spacing:.08em; text-transform:uppercase; }
.sticker-card p{ margin:6px 0 0; color:#d1d5db; font-size:14px; line-height:1.6; }
.sticker-tape{ position:absolute; right:24px; top:0; width:48px; height:12px; transform: rotate(-6deg); background: rgba(250,204,21,.30); }

/* Torn band */
.whyus-af-band{ position:relative; margin-top:32px; border:1px solid rgba(234,179,8,.20); background: rgba(0,0,0,.50); border-radius:16px;
  padding:20px; clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); text-align:center; font-size:14px; color:#d1d5db; }
.whyus-af-band::after{ content:""; position:absolute; inset-x:0; bottom:0; height:24px;
  background: repeating-linear-gradient(135deg, rgba(234,179,8,.15) 0 10px, transparent 10px 20px); border-bottom-left-radius:16px; border-bottom-right-radius:16px; }
.whyus-af-band .seal{ display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(234,179,8,.30); background: rgba(250,204,21,.10);
  padding:6px 10px; border-radius:999px; color:#fde047; font-weight:700; }
.whyus-af-band .dot{ margin:0 8px; opacity:.8; }

/* Tickets */
.whyus-af-tickets{ margin-top:24px; display:grid; grid-template-columns:1fr; gap:12px; }
@media (min-width: 860px){ .whyus-af-tickets{ grid-template-columns: repeat(4, minmax(0,1fr)); } }
.ticket{ position:relative; display:grid; grid-template-columns:36px 1fr auto; align-items:start; gap:12px; background: rgba(0,0,0,.60); border:1px solid rgba(234,179,8,.25); border-radius:16px; padding:16px; }
.ticket-ico{ display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; background: rgba(250,204,21,.15); border-radius:8px; color:#fde047; }
.ticket-title{ color:#fff; font-weight:700; }
.ticket-sub{ color:#d1d5db; font-size:14px; }
.ticket-kpi{ align-self:start; justify-self:end; border:1px solid rgba(234,179,8,.30); background: rgba(250,204,21,.10); color:#fde047; padding:2px 8px; border-radius:999px; font-size:10px; font-weight:800; }
.ticket-dot{ position:absolute; right:-12px; top:16px; width:24px; height:24px; border-radius:999px; border:1px solid rgba(234,179,8,.20); pointer-events:none; }

/* CTA */
.whyus-af-cta{ margin-top:32px; display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:12px; }
.btn{ display:inline-block; border:1px solid rgba(234,179,8,.30); border-radius:16px; padding:12px 20px; font-weight:700; font-size:14px; color:#fde047; }
.btn-primary{ background: rgba(250,204,21,.10); }
.btn-primary:hover{ border-color: rgba(234,179,8,.60); background: rgba(250,204,21,.20); }
.btn-ghost:hover{ background: rgba(250,204,21,.10); }
/* ============================================================= */

/* ================= WHY US — ART/FLUX EDITION ================= */
.whyus-artflux{ position:relative; background:#0b0b0b; color:#e5e7eb; }
.whyus-af-bg{ position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at 1px 1px, rgba(250,204,21,0.06) 1px, transparent 1px);
  background-size:18px 18px; }
.whyus-af-wrap{ padding-top:64px; padding-bottom:96px; }

/* Marquee */
.whyus-af-marquee{ position:relative; overflow:hidden; margin:0 auto 24px; }
.whyus-af-marquee::before{ content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(234,179,8,.10), rgba(250,204,21,.10), rgba(234,179,8,.10)); z-index:-1; }
.whyus-af-marquee-track{ white-space:nowrap; font-weight:800; font-size:12px; letter-spacing:.3em; color:#fde047; animation:marquee 18s linear infinite; padding:8px 0; }
.whyus-af-marquee-track span{ margin:0 24px; }
@keyframes marquee{ 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }

/* Heading */
.whyus-af-head{ text-align:center; }
.whyus-af-head h2{ font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; font-weight:900;
  font-size: clamp(36px, 5vw, 56px); line-height:1.1; color:#fff; }
.whyus-af-head .hl{ color:#facc15; }
.whyus-af-head .scribble{ width:100%; height:24px; margin-top:8px; }
.whyus-af-head p{ max-width:720px; margin:12px auto 0; color:#d1d5db; line-height:1.7; font-size:14px; text-wrap:balance; }

/* Sticker grid */
.whyus-af-stickers{ margin-top:40px; display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width: 900px){
  .whyus-af-stickers{ grid-template-columns: repeat(3, minmax(0,1fr)); gap:24px; }
}
.sticker{ will-change: transform; }
.r--2{ transform: rotate(-2deg); } .r--1{ transform: rotate(-1deg); }
.r-1{ transform: rotate(1deg); } .r-2{ transform: rotate(2deg); } .r-3{ transform: rotate(3deg); } .r--3{ transform: rotate(-3deg); }
.sticker-card{ position:relative; background:#070707; border:1px solid rgba(234,179,8,.30); border-radius:16px; padding:20px; transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 20px 60px -20px rgba(234,179,8,0.35); }
.sticker-card:hover{ transform: translateY(-4px); }
.sticker-pin{ position:absolute; width:12px; height:12px; background: rgba(250,204,21,.70); border-radius:999px; left:-8px; top:-8px; }
.sticker-pin.pin-b{ right:-8px; bottom:-8px; left:auto; top:auto; }
.sticker-icon{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:12px;
  border:1px solid rgba(234,179,8,.30); background: rgba(0,0,0,.40); color:#fde047; margin-bottom:10px; }
.sticker-card h3{ margin:0; font-size:16px; font-weight:900; color:#fff; letter-spacing:.08em; text-transform:uppercase; }
.sticker-card p{ margin:6px 0 0; color:#d1d5db; font-size:14px; line-height:1.6; }
.sticker-tape{ position:absolute; right:24px; top:0; width:48px; height:12px; transform: rotate(-6deg); background: rgba(250,204,21,.30); }

/* Torn band */
.whyus-af-band{ position:relative; margin-top:32px; border:1px solid rgba(234,179,8,.20); background: rgba(0,0,0,.50); border-radius:16px;
  padding:20px; clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); text-align:center; font-size:14px; color:#d1d5db; }
.whyus-af-band::after{ content:""; position:absolute; inset-x:0; bottom:0; height:24px;
  background: repeating-linear-gradient(135deg, rgba(234,179,8,.15) 0 10px, transparent 10px 20px); border-bottom-left-radius:16px; border-bottom-right-radius:16px; }
.whyus-af-band .seal{ display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(234,179,8,.30); background: rgba(250,204,21,.10);
  padding:6px 10px; border-radius:999px; color:#fde047; font-weight:700; }
.whyus-af-band .dot{ margin:0 8px; opacity:.8; }

/* Tickets */
.whyus-af-tickets{ margin-top:24px; display:grid; grid-template-columns:1fr; gap:12px; }
@media (min-width: 860px){ .whyus-af-tickets{ grid-template-columns: repeat(4, minmax(0,1fr)); } }
.ticket{ position:relative; display:grid; grid-template-columns:36px 1fr auto; align-items:start; gap:12px; background: rgba(0,0,0,.60); border:1px solid rgba(234,179,8,.25); border-radius:16px; padding:16px; }
.ticket-ico{ display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; background: rgba(250,204,21,.15); border-radius:8px; color:#fde047; }
.ticket-title{ color:#fff; font-weight:700; }
.ticket-sub{ color:#d1d5db; font-size:14px; }
.ticket-kpi{ align-self:start; justify-self:end; border:1px solid rgba(234,179,8,.30); background: rgba(250,204,21,.10); color:#fde047; padding:2px 8px; border-radius:999px; font-size:10px; font-weight:800; }
.ticket-dot{ position:absolute; right:-12px; top:16px; width:24px; height:24px; border-radius:999px; border:1px solid rgba(234,179,8,.20); pointer-events:none; }

/* CTA */
.whyus-af-cta{ margin-top:32px; display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:12px; }
.btn{ display:inline-block; border:1px solid rgba(234,179,8,.30); border-radius:16px; padding:12px 20px; font-weight:700; font-size:14px; color:#fde047; }
.btn-primary{ background: rgba(250,204,21,.10); }
.btn-primary:hover{ border-color: rgba(234,179,8,.60); background: rgba(250,204,21,.20); }
.btn-ghost:hover{ background: rgba(250,204,21,.10); }
/* ============================================================= */
/* HERO — make the "Explore Plans" button readable on any poster */
.hero a[href="#pricing"],
.hero a[href="#pricing-list"],
.hero a[href="#pricinglist"]{
  display:inline-block;
  background: rgba(0,0,0,.65);          /* dark fill for contrast */
  color:#fff;                           /* white text */
  border:1.6px solid #facc15;           /* keep the yellow vibe */
  border-radius:999px;
  padding:0.9rem 1.4rem;
  font-weight:700;
  text-decoration:none;
  box-shadow:
    0 12px 28px -12px rgba(0,0,0,.7),   /* depth */
    0 0 0 1.5px rgba(250,204,21,.35) inset;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero a[href="#pricing"]:hover,
.hero a[href="#pricing-list"]:hover,
.hero a[href="#pricinglist"]:hover{
  background:#fde047;                   /* bright on hover */
  color:#111827;                        /* readable on yellow */
  border-color:#facc15;
}
.hero a[href="#pricing"]:focus-visible,
.hero a[href="#pricing-list"]:focus-visible,
.hero a[href="#pricinglist"]:focus-visible{
  outline:3px solid rgba(250,204,21,.6);
  outline-offset:2px;
}



/* === FINAL BUTTON OVERRIDES (placed at end to win cascade) === */
:root{
  --_fallback-gold: #facc15;
  --_fallback-gold-strong: #fde047;
  --_fallback-black: #111827;
  --_gold-gradient: linear-gradient(135deg, var(--premium-gold, var(--_fallback-gold-strong)) 0%, #f3cc18 35%, #ffc83d 100%);
}

/* Explore Plans (btn-primary) — bright, readable everywhere */
.btn-primary,
.hero .btn-primary{
  background: var(--gold-gradient, var(--_gold-gradient)) !important;
  color: var(--premium-black, var(--_fallback-black)) !important;
  border: 2px solid var(--premium-gold, var(--_fallback-gold)) !important;
  border-radius: 999px;
  box-shadow: 0 14px 30px -14px rgba(250,204,21,.65);
}
.hero .btn-primary:hover{
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* Free Trial (btn-secondary) — dark pill with gold ring on hero */
.hero .btn-secondary{
  background: rgba(0,0,0,.78) !important;
  color: #fff !important;
  border: 2px solid rgba(250,204,21,.7) !important;
  border-radius: 999px;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.75);
}
.hero .btn-secondary:hover{
  background: rgba(0,0,0,.9) !important;
}
/* ============================================================= */

/* === HERO: mobile fixes === */
.hero{
  position: relative;
  isolation: isolate;          /* keeps overlays behind content */
  min-height: 88svh;           /* real mobile viewport height */
  display: flex;
  align-items: center;
  padding-top: 88px;           /* space for navbar on phones */
}

.hero .hero-slider{
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* make the background always cover and center on small screens */
.hero .slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transform: translateZ(0);    /* mobile Safari repaint fix */
  filter: brightness(.85) contrast(1.05);
}

/* subtle, percentage-based overlay (doesn’t swallow the image on phones) */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 20%, rgba(0,0,0,.35) 0%, rgba(0,0,0,.65) 55%, rgba(0,0,0,.85) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55));
  z-index: -1;
  pointer-events: none;
}

/* Typography & spacing for small screens */
.hero .hero-title{
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero .hero-content{
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* Buttons stack nicely on phones */
.hero .cta-row{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Avoid weird auto-zoom on iOS */
html{ -webkit-text-size-adjust: 100%; }

/* Desktop keeps your current look */
@media (min-width: 768px){
  .hero{ min-height: 80vh; padding-top: 0; }
  .hero .hero-title{ font-size: clamp(44px, 5vw, 72px); }
  .hero::before{
    background:
      radial-gradient(120% 80% at 50% 20%, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.75) 100%),
      linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.45));
  }
}


/* Subtle Fancy: 24h reply pill */
.seal-24h {
  display: inline-block;
  margin-left: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.10);
  color: var(--premium-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .seal-24h { display: block; margin: 0.5rem 0 0; width: fit-content; }
}


/* --- Contact method cards: refined look (match pic #2) --- */
.contact-method {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #0c0c0c; /* deep panel */
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 18px;
  box-shadow:
    0 12px 30px -12px rgba(255, 215, 0, 0.12),
    inset 0 1px 0 rgba(255, 215, 0, 0.08);
  transition: transform var(--animation-fast) var(--ease-premium),
              box-shadow var(--animation-fast) var(--ease-premium),
              border-color var(--animation-fast) var(--ease-premium);
}

.contact-method::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 215, 0, 0.35),
    inset 0 -1px 0 rgba(255, 215, 0, 0.06);
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow:
    0 18px 40px -14px rgba(255, 215, 0, 0.18),
    inset 0 1px 0 rgba(255, 215, 0, 0.10);
}

/* Icon container: rounded square outline with soft gradient interior */
.method-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--premium-gold);
  border: 1px solid rgba(255, 215, 0, 0.35);
  background: linear-gradient(180deg, rgba(255,215,0,0.07), rgba(255,215,0,0.02));
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.10), inset 0 1px 0 rgba(255, 215, 0, 0.25);
  font-size: 0; /* remove emoji sizing influence */
}

.method-icon svg {
  display: block;
}

/* Titles + copy spacing like pic #2 */
.method-info h4 {
  margin: 0 0 0.35rem 0;
  font-weight: 700;
  color: var(--premium-white);
}

.method-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

/* Space between stacked cards (match screenshot spacing) */
.contact-method + .contact-method {
  margin-top: 1rem;
}

/* Container padding tweak on small screens */
@media (max-width: 768px) {
  .contact-method {
    padding: 1rem 1.1rem;
    border-radius: 16px;
  }
  .method-icon {
    width: 42px; height: 42px; border-radius: 11px;
  }
}

/* ===== HERO BRIGHTNESS FIX (paste at end of style.css) ===== */

/* 1) Make posters brighter (safe boost) */
.hero .slides .slide img {
  filter: brightness(1.22) contrast(1.06) saturate(1.06);
  transition: filter .25s ease;
}

/* 2) If a dark overlay exists, soften it */
.hero::before,
.hero .hero-overlay {
  background: rgba(0,0,0,0.22) !important; /* was likely ~0.45–0.65 */
  opacity: 1 !important;                    /* keep layer but much lighter */
}

/* 3) Optional warm “luminosity” glow to lift mid-tones */
.hero {
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* subtle white + warm glow; 'screen' brightens posters without washing text */
  background:
    linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(70% 55% at 50% 35%, rgba(255,225,130,.18) 0%, rgba(255,225,130,0) 60%);
  mix-blend-mode: screen;
}


/* ==== SCROLL SMOOTHNESS PATCH (add at end of style.css) ==== */

/* 1) Disable heavy background animation on mobile / low power */
@media (max-width: 1024px){
  .bg-animation{ display:none !important; }
  .bg-animation .particles,
  .bg-animation .streaming-lines{ animation: none !important; }
}

/* 2) Make the fixed navbar cheaper during scroll */
.navbar{
  backface-visibility: hidden;
  transform: translateZ(0);                 /* promote to its own layer */
  transition:
    background-color var(--animation-fast) var(--ease-premium),
    box-shadow var(--animation-fast) var(--ease-premium),
    border-color var(--animation-fast) var(--ease-premium);
}

/* Keep blur on larger screens but tone it down a bit */
@media (min-width: 1025px){
  .navbar{
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* Turn off backdrop blur on mobile (big win) */
@media (max-width: 1024px){
  .navbar{
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10,10,10,.92) !important;
  }
}

/* 3) Promote hero & images to their own layers to avoid subpixel jitter */
.hero,
.hero .slide img{
  transform: translateZ(0);
  will-change: transform;
}
/* --- Ultra-tight gap between HERO and next section --- */

/* 1) Remove extra space below the hero */
section.hero#home{
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
section.hero#home .hero-container{ margin-bottom: 0 !important; }

/* If your hero was forcing a tall block, relax it a bit */
@media (min-width: 768px){
  section.hero#home{ min-height: 72vh !important; } /* lower if you still see space */
}

/* 2) Pull the next section up aggressively */
#pricing, .pricing, .pricing-section, #plans, .plans{
  padding-top: 4px !important;
  margin-top: -16px !important;    /* <- tighten here (increase to -20px/-24px if needed) */
  border-top: 0 !important;
}

/* 3) Kill heading top margins that add space */
#pricing > *:first-child,
.pricing > *:first-child,
.pricing-section > *:first-child,
#plans > *:first-child,
.plans > *:first-child{
  margin-top: 0 !important;
}

/* 4) Keep anchor scroll with sticky navbar correct */
section[id]{ scroll-margin-top: var(--nav-height, 80px); }

/* 5) If a fade/divider under the hero is creating the black band, hide it */
section.hero#home .fade-bottom,
section.hero#home .divider,
section.hero#home [class*="spacer"]{
  display: none !important;
}

/* === Sports Logo Ticker === */
.sports-ticker {
  padding: 16px 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sports-ticker .st-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.st-row { margin-bottom: 14px; }
.st-row:last-child { margin-bottom: 0; }
.st-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.st-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--color-white, #fff); opacity: .8;
}
.st-line { flex: 1; height: 1px; background: rgba(255,255,255,.15); }

.st-viewport { position: relative; overflow: hidden; }
.st-track {
  display: flex; gap: 16px; padding-right: 16px;
  white-space: nowrap; min-width: max-content;
  animation: st-scroll var(--st-speed, 24s) linear infinite;
  will-change: transform;
}
.st-track:hover { animation-play-state: paused; }

@keyframes st-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.st-tile {
  height: 44px; width: 80px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.st-tile img { max-height: 28px; width: auto; display: block; }

@media (min-width: 640px) {
  .st-tile { height: 48px; width: 96px; }
  .st-tile img { max-height: 32px; }
}

/* ===== Optivex – Slider restyle (matches site UI) ===== */
:root {
  --opti-bg: #121212;
  --opti-gold: #f3d261;       /* adjust if your brand gold differs */
  --opti-band-top: rgba(255,255,255,.10);
  --opti-band-bot: rgba(255,255,255,.08);
}

@keyframes opti-scroll { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

.sports-ticker {
  padding: 18px 0;
  background: var(--opti-bg);
  border-top: 1px solid var(--opti-band-top);
  border-bottom: 1px solid var(--opti-band-bot);
}

.sports-ticker .st-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* header row */
.st-head { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.st-title {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing:.08em;
  color: rgba(255,255,255,.82);
}
.st-line { flex:1; height:1px; background: rgba(255,255,255,.16); }

/* marquee track */
.st-viewport { position: relative; overflow: hidden; }
.st-track {
  display:flex; gap:16px; min-width:max-content; padding-right:16px;
  white-space: nowrap;
  animation: opti-scroll var(--st-speed, 26s) linear infinite;
  will-change: transform;
}
.st-track:hover { animation-play-state: paused; }

/* edge fades (so logos don’t hard-cut at edges) */
.st-viewport::before,
.st-viewport::after {
  content:""; position:absolute; top:0; bottom:0; width:48px; pointer-events:none; z-index:3;
}
.st-viewport::before { left:0;  background: linear-gradient(to right, var(--opti-bg), transparent); }
.st-viewport::after  { right:0; background: linear-gradient(to left, var(--opti-bg), transparent); }

/* base tile (white capsule) */
.st-tile {
  height: 44px; width: 92px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 10px rgba(0,0,0,.16);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.st-tile img { max-height: 28px; width:auto; display:block; }

/* GLASS variant – use with .st--glass on the section */
.st--glass .st-tile {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.88));
  border: 1px solid rgba(0,0,0,.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 8px 20px rgba(0,0,0,.20);
}
.st--glass .st-tile img { filter: saturate(.9) contrast(.98) brightness(.98); }
.st--glass .st-tile:hover {
  border-color: var(--opti-gold);
  box-shadow:
    0 0 0 1px var(--opti-gold) inset,
    0 10px 24px rgba(243,210,97,.16);
  transform: translateY(-1px);
}

/* COMPACT modifier – use with .st--compact */
.st--compact .st-tile { height: 38px; width: 78px; border-radius: 12px; }
.st--compact .st-tile img { max-height: 22px; }

/* mobile tweaks */
@media (max-width: 640px) {
  .sports-ticker { padding: 12px 0; }
  .st-head { margin-bottom: 8px; }
  .st--compact .st-tile { height: 36px; width: 72px; }
}

/* make anchor jumps land cleanly under sticky navbar */
.sports-ticker { scroll-margin-top: 84px; }
/* === Ticker: Large size === */
.st--lg .st-track { gap: 22px; }
.st--lg .st-tile { height: 60px; width: 126px; border-radius: 16px; }
.st--lg .st-tile img { max-height: 36px; }

/* phones/tablets still slightly smaller for fit */
@media (max-width: 640px) {
  .st--lg .st-tile { height: 48px; width: 104px; }
  .st--lg .st-tile img { max-height: 30px; }
}

/* optional: slow scroll a bit since items are wider */
.sports-ticker .st-track { animation-duration: var(--st-speed, 26s); }
.st--lg .st-track { animation-duration: 32s; }   /* row default */



/* ==== OPTIVEX NEW LOGO CAROUSEL =================================================== */


.oc-carousel{
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.oc-container{ max-width:1200px; margin:0 auto; padding:0 16px; }

.oc-row{ margin: 12px 0 18px; }
.oc-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; gap:12px; }
.oc-title{
  font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  color:#fff; opacity:.9;
}
.oc-actions{ display:flex; gap:8px; }
.oc-arrow{
  height:34px; width:34px; border-radius:9999px; border:1px solid rgba(250,204,21,.25);
  background: radial-gradient(100% 100% at 50% 0%, rgba(250,204,21,.18), rgba(250,204,21,.08));
  color:#facc15; font-weight:700; line-height:1; cursor:pointer; backdrop-filter: blur(8px);
  display:grid; place-items:center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .2s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 10px 18px rgba(0,0,0,.35);
}
.oc-arrow:hover{ transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 14px 24px rgba(0,0,0,.45); }
.oc-arrow:active{ transform: translateY(0); }

.oc-viewport{ position:relative; overflow:auto; scrollbar-width:none; -ms-overflow-style:none; }
.oc-viewport::-webkit-scrollbar{ display:none; }
.oc-track{
  display:flex; gap:16px; align-items:center; padding:4px 2px 6px;
  scroll-snap-type:x mandatory;
}
.oc-card{
  flex: 0 0 auto;
  scroll-snap-align: start;
  height: 66px; width: 148px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 20px rgba(0,0,0,.35);
  display:flex; align-items:center; justify-content:center;
  backdrop-filter: blur(6px);
}
.oc-card img{ max-height:36px; width:auto; display:block; }

/* Edge fade so the track feels infinite */
.oc-viewport::before, .oc-viewport::after{
  content:""; position:absolute; top:0; bottom:0; width:48px; pointer-events:none; z-index:2;
}
.oc-viewport::before{ left:0; background: linear-gradient(90deg, rgba(18,18,18,1), rgba(18,18,18,0)); }
.oc-viewport::after{ right:0; background: linear-gradient(270deg, rgba(18,18,18,1), rgba(18,18,18,0)); }

@media (min-width: 640px){
  .oc-card{ height:78px; width:174px; }
  .oc-card img{ max-height:44px; }
}
@media (min-width: 1024px){
  .oc-card{ height:84px; width:196px; }
  .oc-card img{ max-height:50px; }
}
/* ================================================================================== */


/* ==== OPTIVEX – AUTO MARQUEE (Enhanced Creative Design) ===================== */
/* Hide only the old logo rows inside the original ticker, not the whole section */
.sports-ticker .st-container { display: none !important; }

.oc-marquee{
  padding: 32px 0;
  background: 
    linear-gradient(180deg, rgba(250,204,21,.03) 0%, transparent 50%, rgba(250,204,21,.02) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.2));
  border-top: 1px solid rgba(250,204,21,.15);
  border-bottom: 1px solid rgba(250,204,21,.1);
  position:relative;
  overflow:hidden;
}

/* Animated background shimmer effect */
.oc-marquee::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(250,204,21,.05) 50%, 
    transparent 100%);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events:none;
  z-index:0;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.ocm-container{ 
  max-width:1200px; 
  margin:0 auto; 
  padding:0 20px;
  position:relative;
  z-index:1;
}

.ocm-row{ 
  margin:20px 0 28px; 
  position:relative;
}

.ocm-head{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  margin-bottom:16px; 
  gap:16px; 
  position:relative;
}

.ocm-title{
  font-size:13px; 
  font-weight:900; 
  letter-spacing:.12em; 
  text-transform:uppercase;
  color:#facc15;
  text-shadow: 0 0 20px rgba(250,204,21,.3), 0 2px 8px rgba(0,0,0,.5);
  position:relative;
  padding-left:12px;
}

/* Decorative line before title */
.ocm-title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:3px;
  height:18px;
  background: linear-gradient(180deg, #facc15, #eab308);
  border-radius:2px;
  box-shadow: 0 0 12px rgba(250,204,21,.6);
}

/* Decorative divider line after title */
.ocm-divider{
  flex:1;
  height:1px;
  margin-left:16px;
  background: linear-gradient(90deg, 
    rgba(250,204,21,.4) 0%, 
    rgba(250,204,21,.2) 50%,
    transparent 100%);
  position:relative;
}

.ocm-divider::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:8px;
  height:8px;
  border-radius:50%;
  background: rgba(250,204,21,.5);
  box-shadow: 0 0 12px rgba(250,204,21,.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { 
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% { 
    transform: translateY(-50%) scale(1.3);
    opacity: .7;
  }
}

.ocm-viewport{ 
  position:relative; 
  overflow:hidden;
  padding:8px 0;
  margin:0 -8px;
}

/* Enhanced edge fades with gold tint */
.ocm-viewport::before, 
.ocm-viewport::after{
  content:""; 
  position:absolute; 
  top:0; 
  bottom:0; 
  width:80px; 
  pointer-events:none; 
  z-index:3;
  transition: opacity .3s ease;
}
.ocm-viewport::before{ 
  left:0; 
  background: linear-gradient(90deg, 
    rgba(0,0,0,.95) 0%, 
    rgba(0,0,0,.7) 40%,
    transparent 100%); 
}
.ocm-viewport::after{ 
  right:0; 
  background: linear-gradient(270deg, 
    rgba(0,0,0,.95) 0%, 
    rgba(0,0,0,.7) 40%,
    transparent 100%); 
}

.ocm-track{
  display:flex; 
  gap:20px; 
  min-width:max-content; 
  padding-right:20px;
  animation: ocm-scroll var(--ocm-speed, 26s) linear infinite;
  will-change: transform;
}

/* Pause animation on hover */
.ocm-viewport:hover .ocm-track{
  animation-play-state: paused;
}

@keyframes ocm-scroll { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-50%); } 
}

.ocm-card{
  flex:0 0 auto; 
  height:80px; 
  width:160px;
  border-radius:16px;
  background: 
    linear-gradient(135deg, 
      rgba(255,255,255,.12) 0%, 
      rgba(255,255,255,.06) 50%,
      rgba(255,255,255,.08) 100%);
  border:1px solid rgba(250,204,21,.25);
  box-shadow: 
    0 0 0 1px rgba(250,204,21,.1) inset,
    0 4px 16px rgba(0,0,0,.4),
    0 0 24px rgba(250,204,21,.15);
  display:flex; 
  align-items:center; 
  justify-content:center;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

/* Hover glow effect */
.ocm-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, rgba(250,204,21,.2), transparent 70%);
  opacity:0;
  transition: opacity .35s ease;
  pointer-events:none;
}

.ocm-card:hover{
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(250,204,21,.5);
  box-shadow: 
    0 0 0 1px rgba(250,204,21,.2) inset,
    0 8px 24px rgba(0,0,0,.5),
    0 0 40px rgba(250,204,21,.3);
  background: 
    linear-gradient(135deg, 
      rgba(255,255,255,.18) 0%, 
      rgba(255,255,255,.1) 50%,
      rgba(255,255,255,.14) 100%);
}

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

.ocm-card img{ 
  max-height:42px; 
  width:auto; 
  display:block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  z-index:1;
}

.ocm-card:hover img{
  transform: scale(1.1);
}

/* Subtle pulse animation for cards */
@keyframes card-pulse {
  0%, 100% { box-shadow: 
    0 0 0 1px rgba(250,204,21,.1) inset,
    0 4px 16px rgba(0,0,0,.4),
    0 0 24px rgba(250,204,21,.15); }
  50% { box-shadow: 
    0 0 0 1px rgba(250,204,21,.15) inset,
    0 4px 16px rgba(0,0,0,.4),
    0 0 32px rgba(250,204,21,.25); }
}

.ocm-card:nth-child(3n) {
  animation: card-pulse 4s ease-in-out infinite;
  animation-delay: 0s;
}
.ocm-card:nth-child(3n+1) {
  animation: card-pulse 4s ease-in-out infinite;
  animation-delay: 1.3s;
}
.ocm-card:nth-child(3n+2) {
  animation: card-pulse 4s ease-in-out infinite;
  animation-delay: 2.6s;
}

@media (min-width: 640px){
  .ocm-card{ 
    height:90px; 
    width:180px; 
  }
  .ocm-card img{ 
    max-height:48px; 
  }
  .ocm-title{
    font-size:14px;
  }
}
@media (min-width: 1024px){
  .ocm-card{ 
    height:100px; 
    width:200px; 
  }
  .ocm-card img{ 
    max-height:54px; 
  }
  .ocm-title{
    font-size:15px;
  }
  .ocm-viewport::before,
  .ocm-viewport::after{
    width:120px;
  }
}
/* ============================================================================= */


/* ==== PATCH: Neutralize old ticker wrapper so there's no 'second band' ==== */
.sports-ticker{
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  min-height: 0 !important;
}
.sports-ticker .st-container{ display: none !important; }


/* === Pricing: keep price on one line & align baseline === */
.pricing .price{
  display:flex;
  align-items:baseline;
  gap:.35rem;
  flex-wrap:nowrap;
  white-space:nowrap;
}
.pricing .period{ white-space:nowrap; }



/* === Force single-line price across breakpoints === */
.pricing .pricing-grid .pricing-card .pricing-header .price{
  display:flex !important;
  align-items:baseline !important;
  gap:.35rem !important;
  flex-wrap:nowrap !important;
  white-space:nowrap !important;
}
.pricing .pricing-grid .pricing-card .pricing-header .price > *{
  white-space:nowrap !important;
}
@media (max-width: 480px){
  .pricing .pricing-grid .pricing-card .pricing-header .amount{ font-size:2.25rem; }
  .pricing .pricing-grid .pricing-card .pricing-header .currency{ font-size:1rem; }
  .pricing .pricing-grid .pricing-card .pricing-header .period{ font-size:0.95rem; }
}


:root{
  --ovx-bg:#0a0b0d; --ovx-panel:#111318; --ovx-panel2:#141821; --ovx-line:#232731;
  --ovx-text:#e6e8ec; --ovx-muted:#9aa2ad; --ovx-gold:#facc15;
}
.ovx-proof{background:linear-gradient(180deg,var(--ovx-bg) 0%,#0f1115 100%); padding:48px 0; border-top:1px solid rgba(250,204,21,.12); margin-top:16px}
.ovx-wrap{max-width:1200px;margin:0 auto;padding:0 16px}
.ovx-head h2{font-family:ui-serif,Georgia,serif;font-size:clamp(28px,5vw,44px);margin:0;color:#fff}
.ovx-head .hl{color:var(--ovx-gold)}
.ovx-head p{color:#d1d5db;margin:6px 0 18px}
.ovx-kpis{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
@media(max-width:820px){.ovx-kpis{grid-template-columns:1fr}}
.ovx-kpi{border:1px solid rgba(250,204,21,.22);background:rgba(255,255,255,.04);
  border-radius:16px;padding:16px;backdrop-filter:blur(4px)}
.kpi-label{color:#f0f0f0;font-weight:800;letter-spacing:.02em}
.kpi-value{font-weight:900;font-size:clamp(24px,4vw,34px);color:#fff;margin-top:4px}
.kpi-sub{color:#9aa2ad;font-size:13px;margin-top:4px}
.ovx-proof-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:16px}
@media(max-width:1024px){.ovx-proof-row{grid-template-columns:1fr}}
.ovx-proof-card{border:1px solid rgba(250,204,21,.22);background:rgba(255,255,255,.04);
  border-radius:16px;padding:16px}
.ovx-proof-card h3{margin:0 0 8px;color:#fff;font-size:18px}
.ovx-proof-card p, .ovx-proof-card li{color:#d1d5db}
.ovx-devices, .ovx-why{padding-left:16px;margin:0 0 10px}
.ovx-btn-primary{display:inline-block;border:1px solid rgba(250,204,21,.30);border-radius:16px;padding:10px 16px;
  font-weight:800;font-size:14px;color:#111827;background:linear-gradient(135deg,#fde047,#f3cc18);border:2px solid #facc15}
.ovx-btn-ghost{display:inline-block;border:1px solid rgba(250,204,21,.30);border-radius:16px;padding:10px 16px;
  font-weight:800;font-size:14px;color:#fde047;background:rgba(250,204,21,.10)}

.ovx-compare{padding:28px 0}
.cmp-h{color:#fff;margin:0 0 10px;font-weight:900}
.cmp-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:820px){.cmp-grid{grid-template-columns:1fr}}
.cmp-us,.cmp-others{border:1px solid rgba(250,204,21,.22);background:rgba(255,255,255,.04);border-radius:16px;padding:16px}
.cmp-us h4,.cmp-others h4{margin:0 0 6px;color:#fde047}
.cmp-us li,.cmp-others li{color:#d1d5db;margin:6px 0}

.ovx-sticky{position:sticky;bottom:0;left:0;right:0;z-index:50;
  display:flex;gap:10px;align-items:center;justify-content:center;flex-wrap:wrap;
  background:rgba(0,0,0,.75);backdrop-filter:blur(8px);
  padding:10px;border-top:1px solid rgba(250,204,21,.25)}
.ovx-sticky span{color:#fde047;font-weight:800}
.ovx-sticky .dot{width:6px;height:6px;border-radius:999px;background:#fde047;display:inline-block;opacity:.85}
.ovx-sticky .wa{font-weight:900;color:#111827;background:linear-gradient(135deg,#fde047,#f3cc18);
  padding:8px 14px;border-radius:999px;border:2px solid #facc15;text-decoration:none}

/* ===== OVX Sticky Trust Bar (fixed) ===== */
:root{ --ovx-sticky-h: 0px; }
body{ padding-bottom: calc(var(--ovx-sticky-h, 0px) + env(safe-area-inset-bottom, 0px)); }

.ovx-sticky{
  position: fixed;
  left: 0; right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0px));
  z-index: 1000;
  display:flex;gap:10px;align-items:center;justify-content:center;flex-wrap:wrap;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-top: 1px solid rgba(250,204,21,.25);
}
.ovx-sticky span{color:#fde047;font-weight:800}
.ovx-sticky .dot{width:6px;height:6px;border-radius:999px;background:#fde047;display:inline-block;opacity:.85}
.ovx-sticky .wa{
  font-weight:900;color:#111827;background:linear-gradient(135deg,#fde047,#f3cc18);
  padding:8px 14px;border-radius:999px;border:2px solid #facc15;text-decoration:none
}
/* Lift WhatsApp bubble above the fixed trust bar */
:root{
  /* offset = sticky bar height + iOS safe area + gap */
  --wa-offset: calc(var(--ovx-sticky-h, 0px) + env(safe-area-inset-bottom, 0px) + 16px);
}

/* The embedded widget placeholder you already have in index.html */
.wa-support{
  position: fixed !important;
  right: 18px !important;
  bottom: var(--wa-offset) !important;
  z-index: 1101 !important; /* bar is 1000 */
}

/* If the widget injects its own fixed element, nudge that too */
.wa-bubble, .wa-floating, .wa-widget{
  bottom: var(--wa-offset) !important;
  right: 18px !important;
  z-index: 1101 !important;
}



/* Perf: pause heavy background animations until we remove [data-paused] */
.bg-animation[data-paused] .particles,
.bg-animation[data-paused] .streaming-lines{ animation: none !important; }

/* WhatsApp bubble above fixed bar */
:root{ --ovx-sticky-h: var(--ovx-sticky-h, 0px); }
.wa-support{
  bottom: calc(var(--ovx-sticky-h, 0px) + env(safe-area-inset-bottom, 0px) + 16px) !important;
  z-index: 1100 !important;
}


/* === Performance helpers === */

/* Avoid painting huge offscreen sections */
#home .poster-wall, #home .home-bg {
  content-visibility: auto;
  contain-intrinsic-size: 800px 500px; /* prevents layout shift while lazy building */
}

/* Pause poster marquee tracks when offscreen */
.poster-wall.paused .poster-track {
  animation-play-state: paused !important;
}

/* Slides fade are cheap; prevent excessive compositor work */
.home-bg .slide { will-change: opacity; }
.poster-track { will-change: transform; } /* only the track, not every single poster */
.poster { background-size: cover; background-position: center; }

