: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-size-hero-title: clamp(52px, 8vw, 84px);
  --font-size-section-title: clamp(34px, 5vw, 42px);
  --font-size-section-subtitle: clamp(18px, 4vw, 22px);
  --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 */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    color: #1B3B2C;
    background-color: #FFF8F2;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1B3B2C;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #D4A5A5;
    outline-offset: 2px;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -10% -5% 0;
    background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0) 55%, rgba(12, 30, 22, 0.28) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Parallax background layer */
.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-image: url('https://user-gen-media-assets.s3.amazonaws.com/gemini_images/b581fe26-dd8f-414c-8ee1-e8458dc128dd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

/* Color overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(132deg,
        rgba(27, 59, 44, 0.45) 0%,
        rgba(244, 207, 203, 0.25) 60%,
        rgba(27, 59, 44, 0.4) 100%);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}





.brand-name {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: var(--font-size-hero-title);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F7F3EF;
    line-height: 1.05;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 24px;
    text-shadow: 0 4px 18px rgba(12, 32, 24, 0.6);
}

.brand-name .last-a {
    font-style: italic;
    font-weight: 300;
}

.tagline {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 3px 14px rgba(15, 33, 24, 0.55);
}

.coming-soon {
    display: inline-block;
}

.coming-soon span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    color: #D4939D;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.social-proof,
.early-access {
    font-family: "Inter", "Space Grotesk", sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    margin: 8px 0;
    text-shadow: 0 2px 10px rgba(12, 30, 22, 0.55);
}

/* Launch Date Section (February 2026) */
.launch-date {
    text-align: center;
    margin: 28px 0 20px;
}

.launch-title {
    font-family: Georgia, "Playfair Display", serif;
    font-size: clamp(30px, 4.2vw, 40px);
    color: #F5CFD4;
    margin: 12px 0;
    position: relative;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-shadow: 0 4px 12px rgba(20, 40, 30, 0.55);
}

.launch-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #D4C4A8, #D4A5A5);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

/* Countdown Timer */
.countdown {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(28px, 5vw, 34px);
    letter-spacing: 0.08em;
    color: #FFE4EA;
    text-transform: uppercase;
    margin: 22px 0 18px;
    background: rgba(27, 59, 44, 0.35);
    display: inline-block;
    padding: 16px 30px;
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(18, 40, 30, 0.35);
    border: 1px solid rgba(246, 220, 225, 0.5);
    backdrop-filter: blur(8px);
    text-shadow: 0 2px 8px rgba(13, 28, 22, 0.55);
}

/* Hero CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 28px;
}

.btn {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    padding: 16px 36px;
    font-size: 16px;
    letter-spacing: 0.02em;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button Ripple Effect */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #F0A8B2 0%, #D77B8A 100%);
    color: white;
    border: none;
    box-shadow: 0 18px 32px rgba(215, 123, 138, 0.4), 0 6px 18px rgba(61, 21, 44, 0.4);
    animation: breath 3s ease-in-out infinite;
}

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

.btn-primary:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 24px 40px rgba(212, 147, 157, 0.5);
    background: linear-gradient(135deg, #D77B8A, #F0A8B2);
    animation: none;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-ghost {
    background: transparent;
    color: #1B3B2C;
    border: 2px solid rgba(255, 228, 234, 0.8);
    color: rgba(255, 228, 234, 0.95);
    background: rgba(27, 59, 44, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 228, 234, 0.35), 0 16px 26px rgba(18, 40, 30, 0.34);
}

.btn-ghost:hover {
    background: rgba(255, 228, 234, 0.2);
    transform: translateY(-2px) scale(1.04);
    box-shadow: inset 0 0 0 1px rgba(255, 228, 234, 0.6), 0 22px 36px rgba(18, 40, 30, 0.36);
}

.btn-ghost:active {
    transform: scale(0.98);
}

.btn-ghost:focus-visible {
    outline: 2px solid rgba(255, 228, 234, 0.85);
    outline-offset: 2px;
}

/* Value Proposition Section */
.value-proposition {
    padding: 100px 0;
    background-color: #F8F4F0;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.product-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.category-item {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(244, 207, 203, 0.3);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(27, 59, 44, 0.95);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-badge.badge-curated {
    background: rgba(74, 107, 84, 0.95);
}

.product-badge.badge-vegan {
    background: rgba(47, 85, 65, 0.95);
}

.product-badge.badge-organic {
    background: rgba(27, 59, 44, 0.95);
}

/* Product Count */
.product-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 8px 0;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(47, 85, 65, 0.7), rgba(27, 59, 44, 0.85));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.category-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.category-item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.category-item:hover .category-overlay {
    background: linear-gradient(to bottom, rgba(47, 85, 65, 0.5), rgba(27, 59, 44, 0.7));
}

/* Category Icon */
.category-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.category-item:hover .category-icon {
    transform: rotate(5deg) scale(1.15);
}

.category-icon svg path,
.category-icon svg circle,
.category-icon svg ellipse,
.category-icon svg line {
    stroke: white;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon svg path,
.category-item:hover .category-icon svg circle,
.category-item:hover .category-icon svg ellipse,
.category-item:hover .category-icon svg line {
    stroke: #F4CFCB;
}

.category-item h3 {
    font-family: Georgia, serif;
    font-size: 18px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-benefit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 8px 0;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.category-products {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Availability Info */
.availability-info {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    background: rgba(27, 59, 44, 0.95);
    color: white;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-shadow: none;
    z-index: 3;
}

.category-item:hover .availability-info {
    opacity: 1;
    transform: translateY(0);
}

/* Notify Me Button */
.notify-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #E5A8A8, #D4939D);
    color: white;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.category-item:hover .notify-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #D4939D, #E5A8A8);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.notify-btn:active {
    transform: translateY(2px);
}

/* Brand Story Section */
.brand-story {
    padding: 120px 0;
    background: linear-gradient(135deg, #F4CFCB 0%, #E8DFD8 100%);
    text-align: center;
}

.story-quote {
    max-width: 800px;
    margin: 0 auto;
}

.story-quote .overline {
    display: block;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #D4A5A5;
    margin-bottom: 24px;
    font-weight: 600;
}

.story-quote blockquote {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.6;
    color: #1B3B2C;
    margin: 0 0 32px;
    position: relative;
    font-weight: 500;
}

.story-quote blockquote::before,
.story-quote blockquote::after {
    content: '“';
    font-size: 60px;
    color: rgba(212, 165, 165, 0.6);
    position: absolute;
}

.story-quote blockquote::after {
    content: '”';
}

.story-quote blockquote::before {
    top: -20px;
    left: -30px;
}

.story-quote blockquote::after {
    bottom: -20px;
    right: -30px;
}

.story-quote .support-text {
    font-size: 18px;
    color: #2F5541;
    line-height: 1.7;
    margin: 0;
}

/* Section Title */
.section-title {
    text-align: center;
    font-family: "Playfair Display", Georgia, serif;
    font-size: var(--font-size-section-title);
    color: #1B3B2C;
    margin-bottom: 60px;
}

/* Email Signup Section */
.email-signup {
    padding: 120px 0;
    background: linear-gradient(135deg, #E8DFD8 0%, #F4CFCB 100%);
    position: relative;
    overflow: hidden;
}

.email-signup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 165, 165, 0.15);
    pointer-events: none;
}

.email-signup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://user-gen-media-assets.s3.amazonaws.com/gemini_images/1ff137df-6fb3-4a93-8566-4105a3d74572.png');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.signup-content h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 40px;
    color: #1B3B2C;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.signup-subtext {
    font-size: 16px;
    color: #2F5541;
    margin-bottom: 20px;
}

/* Form Incentive */
.form-incentive {
    background: linear-gradient(135deg, #F4CFCB, #E5A8A8);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
    color: #1B3B2C;
    box-shadow: 0 2px 8px rgba(229, 168, 168, 0.3);
}

.form-incentive strong {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
}

#emailInput {
    width: 100%;
    padding: 18px 50px 18px 24px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid #E5A8A8;
    border-radius: 8px;
    background: white;
    color: #1B3B2C;
    transition: all 0.3s ease;
    outline: none;
}

#emailInput:focus {
    border: 2px solid #D4939D;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.4);
    outline: 2px solid #D4A5A5;
    outline-offset: 2px;
}

#emailInput.valid {
    border-color: #4A6B54;
    background-color: rgba(74, 107, 84, 0.05);
}

#emailInput.invalid {
    border-color: #D4939D;
    background-color: rgba(212, 147, 157, 0.05);
}

.input-checkmark {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

#emailInput.valid ~ .input-checkmark {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.input-error-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

#emailInput.invalid ~ .input-error-icon {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    display: block !important;
}

/* Error Message */
.error-message {
    color: #D4939D;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    text-align: left;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    height: auto;
    margin-top: 8px;
}

.submit-btn {
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background: linear-gradient(135deg, #E5A8A8, #D4939D);
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 168, 168, 0.4);
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 147, 157, 0.5), 0 0 0 3px rgba(212, 165, 165, 0.2);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:focus-visible {
    outline: 2px solid #D4939D;
    outline-offset: 2px;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.submit-btn.success {
    background: linear-gradient(135deg, #4A6B54, #2F5441);
}

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

.form-microcopy {
    font-size: 13px;
    color: #2F5441;
    margin-top: 10px;
    font-style: italic;
}

.success-message {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background: rgba(229, 168, 168, 0.15);
    border-radius: 12px;
    border: 1px solid #E5A8A8;
}

.success-message.show {
    display: block;
    animation: successSlide 0.5s ease-out, successCelebration 0.6s ease-out;
}

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

@keyframes successCelebration {
    0% { transform: scale(0.8) rotate(-5deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.success-icon {
    margin-bottom: 15px;
    animation: checkmark 0.6s ease-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.3) rotate(20deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-message p {
    color: #1B3B2C;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}



/* Image loading state */
img {
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
}

img:not([src]) {
    visibility: hidden;
}

/* Smooth image load animation */
@keyframes imageLoad {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

.botanical-pattern-image,
.hero-brand-image {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
}



/* Trust Section */
.trust-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #FDEEEF 0%, #FFF7F3 55%, #FFF9F6 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 15%, rgba(244, 207, 203, 0.28) 0%, rgba(244, 207, 203, 0) 55%),
                radial-gradient(circle at 90% 85%, rgba(232, 223, 216, 0.3) 0%, rgba(232, 223, 216, 0) 60%);
    z-index: 0;
}

.trust-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4939D;
    margin-bottom: 16px;
}

.trust-section .section-title {
    text-align: center;
    font-size: clamp(30px, 4.5vw, 38px);
    letter-spacing: 0.04em;
    color: #1B3B2C;
    text-transform: none;
    margin-bottom: 18px;
}

.trust-subcopy {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(27, 59, 44, 0.82);
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 242, 240, 0.88) 100%);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(212, 165, 165, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(212, 165, 165, 0.24);
    backdrop-filter: blur(2px);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(212, 165, 165, 0.32);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 238, 235, 0.92) 100%);
}

.trust-item h4 {
    font-family: Georgia, serif;
    font-size: 17px;
    letter-spacing: 0.015em;
    color: #1B3B2C;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.trust-item p {
    font-size: 14px;
    color: rgba(27, 59, 44, 0.72);
    margin: 0;
    line-height: 1.5;
}

.trust-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.trust-item:hover .trust-icon {
    transform: scale(1.08) rotate(3deg);
}

/* Footer */
.footer {
    padding: 50px 0 30px;
    background: #F8F4F0;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-text {
    margin: 20px 0;
}

.company-name {
    font-weight: 600;
    color: #1B3B2C;
    margin: 0 0 4px 0;
    font-size: 15px;
}

.contact {
    margin: 8px 0;
    font-size: 14px;
}

.contact a {
    color: #E5A8A8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #D4939D;
    text-decoration: underline;
}

.social-link {
    color: #2F5541;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: #E5A8A8;
    transform: translateY(-3px);
}

.made-with {
    font-size: 11px;
    color: #D4939D;
    margin-top: 8px;
}

.social-link:focus-visible {
    outline: 2px solid #E5A8A8;
    outline-offset: 4px;
    border-radius: 4px;
}

.copyright {
    font-size: 14px;
    color: #2F5441;
    margin: 8px 0;
}

.lazy-bg {
    background-color: #E8DFD8;
    background-position: center;
    background-size: cover;
}

/* Reduced Motion Accessibility (WCAG 2.1 AA) */
@media (prefers-reduced-motion: reduce) {
    /* Disable parallax */
    .parallax-bg {
        position: absolute !important;
        transform: none !important;
        background-attachment: scroll !important;
        top: 0 !important;
        height: 100% !important;
    }
    
    /* Disable all animations */
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .countdown, .btn-primary {
        animation: none !important;
    }
    
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .scroll-indicator {
        animation: none !important;
    }
}



/* Tablet: 2-column grid */
@media (min-width: 481px) and (max-width: 768px) {
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile: Disable parallax for performance */
    .parallax-bg {
        position: absolute;
        top: 0;
        height: 100%;
        background-attachment: scroll;
        transform: none !important;
    }
    .brand-name {
        font-size: clamp(36px, 10vw, 48px);
        letter-spacing: 0.12em;
    }

    .tagline {
        font-size: 16px;
    }

    .coming-soon span {
        font-size: 14px;
    }
    
    .launch-title {
        font-size: clamp(22px, 5vw, 28px);
    }
    
    .countdown {
        font-size: 18px;
        margin: 10px 0;
        flex-wrap: nowrap;
    }
    
    .social-proof {
        font-size: 14px;
        margin: 6px 0 4px;
    }
    
    .early-access {
        font-size: 13px;
        margin: 4px 0 16px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }

    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        padding: 14px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        margin: 8px 0;
    }



    .section-title {
        font-size: clamp(28px, 5vw, 34px);
        margin-bottom: 40px;
    }

    .value-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-categories {
        gap: 20px;
    }

    .category-item {
        padding: 30px 20px;
        min-height: 240px;
    }

    .brand-story {
        padding: 80px 0;
    }

    .story-quote blockquote::before {
        left: -15px;
        top: -15px;
        font-size: 40px;
    }

    .story-quote blockquote::after {
        right: -15px;
        bottom: -15px;
        font-size: 40px;
    }

    .story-quote .support-text {
        font-size: 16px;
    }

    .email-signup {
        padding: 80px 0;
    }

    .signup-content {
        padding: 40px 25px;
    }

    .signup-content h2 {
        font-size: 32px;
    }
    
    .form-incentive {
        padding: 10px 16px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .email-form {
        gap: 15px;
    }

    .submit-btn {
        padding: 14px 30px;
        min-height: 48px;
        width: 100%;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cert-badge {
        padding: 12px;
    }
    
    .trust-item h4 {
        font-size: 14px;
    }
    
    .trust-item p {
        font-size: 12px;
    }

    .value-proposition {
        padding: 60px 0;
    }

    .trust-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 32px;
    }

    .hero::after {
        inset: -4% -10% 0;
        background: radial-gradient(circle at 50% 36%, rgba(0, 0, 0, 0) 50%, rgba(12, 30, 22, 0.35) 100%);
    }

    .hero-content {
        padding: 42px 16px 58px;
    }

    .tagline {
        font-size: 14px;
    }
    
    .launch-title {
        font-size: 20px;
    }
    
    .countdown {
        font-size: 18px;
    }
    
    .social-proof {
        font-size: 13px;
    }
    
    .early-access {
        font-size: 12px;
    }

    .product-categories {
        grid-template-columns: 1fr;
    }

    .category-item {
        min-height: 220px;
    }
    
    .benefit-tooltip {
        font-size: 11px;
        padding: 10px 16px;
    }
    
    .category-benefit {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .story-quote blockquote::before,
    .story-quote blockquote::after {
        display: none;
    }

    .signup-content h2 {
        font-size: 24px;
    }

    .trust-items {
        gap: 12px;
    }
    
    .form-incentive {
        font-size: 13px;
        padding: 8px 12px;
    }
}