/* ===============================================
   FORMAS.AI - BRAND CORE STYLES
   Source of truth for Design Intelligence aesthetic
   Used by: welcome.html, login.html, onboarding, studio
   =============================================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Colors - Dark Minimal Palette */
  --formas-bg-primary: #0a0a0a;
  --formas-bg-secondary: #141414;
  --formas-bg-tertiary: #1a1a1a;
  --formas-text-primary: #ffffff;
  --formas-text-secondary: #a0a0a0;
  --formas-text-muted: #666666;
  --formas-border-color: #2a2a2a;
  --formas-border-subtle: #1a1a1a;
  
  /* ═══════════════════════════════════════════════════════
     GOLD & ORANGE PALETTE - New Brand Duo
     Primary: Gold (action) | Accent: Orange (highlight)
     ═══════════════════════════════════════════════════════ */
  --formas-gold: #B8860B;            /* Deep Dark Gold */
  --formas-gold-bright: #D4AF37;     /* Metallic Gold */
  --formas-gold-soft: #DAA520;       /* Goldenrod */
  --formas-gold-glow: rgba(184, 134, 11, 0.45);
  --formas-gold-subtle: rgba(184, 134, 11, 0.15);
  
  /* Orange Accent */
  --formas-orange: #E8903C;         /* Richer, less "flat" orange */
  --formas-orange-bright: #F5A623;  /* Vivid Orange */
  --formas-orange-soft: #FFCC80;    /* Soft Orange */
  --formas-orange-glow: rgba(232, 144, 60, 0.4);
  --formas-orange-subtle: rgba(232, 144, 60, 0.15);
  
  /* Neutral palette */
  --formas-white: #F5F5F5;           /* Sharp off-white (no halos) */
  --formas-black: #0A0A0A;           /* Rich black */
  --formas-fluid-orange: #FFA500;    /* Warm orange (warnings/logout) */
  
  /* Primary accent - Gold (Replaces Cyan) */
  --formas-accent: var(--formas-gold);
  --formas-accent-bright: var(--formas-gold-bright);
  --formas-accent-soft: var(--formas-gold-soft);
  --formas-accent-glow: var(--formas-gold-glow);
  --formas-accent-subtle: var(--formas-gold-subtle);
  
  /* Secondary accent - Orange (Replaces Magenta) */
  --formas-accent-secondary: var(--formas-orange);
  --formas-accent-secondary-glow: var(--formas-orange-glow);
  
  /* Verified badge - White filter */
  --formas-verified-filter: brightness(0) invert(1);
  
  /* Legacy mappings */
  --formas-amber: var(--formas-gold);
  --formas-cyan: #00E5FF;            /* Retain for specific legacy use if needed */
  --formas-cyan-soft: #22D3EE;
  --formas-magenta: #FF00FF;
  
  /* Star ratings - keep gold */
  --formas-star-color: #FFD700;
  
  /* Glassy Effects */
  --formas-glass-bg: rgba(26, 26, 26, 0.6);
  --formas-glass-bg-dark: rgba(10, 10, 10, 0.92);
  --formas-glass-border: rgba(255, 255, 255, 0.1);
  --formas-glass-border-hover: rgba(255, 255, 255, 0.2);
  --formas-glass-hover: rgba(42, 42, 42, 0.8);
  
  /* Fluid Gradient (for animated backgrounds) - Metallic Gold Flow */
  --formas-gradient-fluid: linear-gradient(
    135deg,
    var(--formas-gold-bright) 0%,
    #B8860B 25%,
    var(--formas-gold-soft) 50%,
    #8A6628 75%,
    var(--formas-gold-bright) 100%
  );
  
  /* Spacing */
  --formas-spacing-xs: 8px;
  --formas-spacing-sm: 16px;
  --formas-spacing-md: 24px;
  --formas-spacing-lg: 48px;
  --formas-spacing-xl: 80px;
  
  /* Border Radius */
  --formas-radius-sm: 12px;
  --formas-radius-md: 24px;
  --formas-radius-lg: 32px;
  --formas-radius-pill: 9999px;
  
  /* Transitions */
  --formas-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --formas-transition-fast: all 0.2s ease;
  --formas-transition-spring: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ========== GLASSMORPHISM CONTAINERS ========== */

.formas-glass-card {
  background: var(--formas-glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--formas-glass-border);
  border-radius: var(--formas-radius-md);
  transition: var(--formas-transition);
}

.formas-glass-card:hover {
  background: var(--formas-glass-hover);
  border-color: var(--formas-glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Heavy glass for modals/overlays */
.formas-glass-heavy {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--formas-radius-lg);
  backdrop-filter: blur(60px) saturate(180%) brightness(0.7);
  -webkit-backdrop-filter: blur(60px) saturate(180%) brightness(0.7);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 120px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* Frosted highlight on top edge */
.formas-glass-heavy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  border-radius: var(--formas-radius-lg) var(--formas-radius-lg) 0 0;
}


/* ========== PILL BUTTONS ========== */

/* Base pill style - shared between user-pill and action buttons */
.formas-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  height: 38px;
  min-height: 38px;
  max-height: 38px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-decoration: none;
  transition: var(--formas-transition);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.formas-pill:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
}

/* User pill variant (with avatar) */
.formas-pill-user {
  padding: 0 16px 0 5px;
}

.formas-pill-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--formas-gold) 0%, var(--formas-gold-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
  flex-shrink: 0;
}

.formas-pill-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

/* Golden CTA pill with shimmer */
.formas-pill-cta {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}

.formas-pill-cta:hover {
  border-color: rgba(0, 229, 255, 0.5);
}

.formas-pill-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(0, 229, 255, 0.45) 50%, 
    transparent 100%
  );
  animation: formas-shimmer 3s ease-in-out infinite;
}

@keyframes formas-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Primary action button (solid) */
.formas-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.95) 100%);
  border: none;
  border-radius: 14px;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  cursor: pointer;
  transition: var(--formas-transition-spring);
  position: relative;
  overflow: hidden;
}

.formas-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.formas-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.2),
    0 0 40px rgba(255, 255, 255, 0.1);
}

.formas-btn-primary:hover:not(:disabled)::before {
  left: 100%;
}

.formas-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Secondary/ghost button */
.formas-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  cursor: pointer;
  transition: var(--formas-transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.formas-btn-secondary:hover {
  background: rgba(26, 26, 26, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Accent button (Cyber Cyan) */
.formas-btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--formas-gold) 0%, var(--formas-gold-bright) 100%);
  border: none;
  border-radius: 14px;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  transition: var(--formas-transition);
  box-shadow: 0 4px 20px var(--formas-cyan-glow);
}

.formas-btn-accent:hover {
  background: linear-gradient(135deg, var(--formas-cyan-soft) 0%, var(--formas-cyan-bright) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--formas-cyan-glow);
}

/* Outline button (transparent) */
.formas-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  cursor: pointer;
  transition: var(--formas-transition);
}

.formas-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}


/* ========== FORM INPUTS ========== */

.formas-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #ffffff;
  font-size: 14px;
  transition: var(--formas-transition-spring);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: -0.01em;
}

.formas-input:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(26, 26, 26, 0.8);
}

.formas-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(26, 26, 26, 0.9);
  box-shadow: 
    0 0 0 3px rgba(255, 255, 255, 0.08),
    0 0 30px rgba(255, 255, 255, 0.05);
}

.formas-input::placeholder {
  color: #555555;
}

/* Selection input (like step options) */
.formas-select-option {
  padding: 16px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--formas-radius-sm);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--formas-transition);
  text-align: left;
}

.formas-select-option:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(26, 26, 26, 0.8);
}

.formas-select-option.selected {
  background: var(--formas-accent-soft);
  border-color: var(--formas-accent);
  color: #ffffff;
}

/* Multi-select option (grid layout) */
.formas-multiselect-option {
  padding: 16px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--formas-radius-sm);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--formas-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 100px;
  text-align: center;
}

.formas-multiselect-option:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(26, 26, 26, 0.8);
}

.formas-multiselect-option.selected {
  background: var(--formas-accent-soft);
  border-color: var(--formas-accent);
  color: #ffffff;
}

.formas-multiselect-option .option-icon {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: var(--formas-transition-fast);
}

.formas-multiselect-option.selected .option-icon {
  opacity: 1;
  color: var(--formas-accent);
}


/* ========== BACKGROUND PATTERNS ========== */

/* Animated cross pattern (Golden - warm) */
.formas-bg-crosses {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.formas-bg-crosses::before {
  content: '';
  position: absolute;
  inset: -50px;
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.6'%3E%3Cpath d='M17 14v6M14 17h6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 34px 34px;
  opacity: 0.12;
  animation: formas-grid-drift 60s linear infinite;
}

@keyframes formas-grid-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(34px, 34px); }
}

/* Mouse-follow glow layer */
.formas-bg-crosses-glow {
  position: absolute;
  inset: -50px;
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ff9d00' stroke-width='0.8'%3E%3Cpath d='M17 14v6M14 17h6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 34px 34px;
  opacity: 0.7;
  animation: formas-grid-drift 60s linear infinite;
  mask-image: radial-gradient(200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
  pointer-events: none;
}

/* Floating gradient orbs */
.formas-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.formas-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 1;
  animation: formas-orb-float 20s ease-in-out infinite;
}

.formas-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
  top: -250px;
  left: -150px;
  animation-delay: 0s;
}

.formas-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 40%, transparent 70%);
  bottom: -200px;
  right: -150px;
  animation-delay: -7s;
}

.formas-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes formas-orb-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-30px, -20px) scale(1.02);
  }
}


/* ========== PROGRESS INDICATORS ========== */

.formas-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.formas-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--formas-cyan) 0%, var(--formas-cyan-bright) 100%) !important;
  border-radius: 2px;
  transition: width 0.5s ease-out;
  box-shadow: 0 0 10px var(--formas-cyan-glow);
}

/* Step indicator dots */
.formas-steps {
  display: flex;
  align-items: center;
  gap: 8px;
}

.formas-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--formas-transition);
}

.formas-step-dot.active {
  background: var(--formas-cyan-bright) !important;
  box-shadow: 0 0 8px var(--formas-cyan-glow);
}

.formas-step-dot.completed {
  background: rgba(255, 255, 255, 0.6);
}


/* ========== BADGES ========== */

.formas-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.formas-badge-pro {
  background: var(--formas-cyan-subtle);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--formas-cyan-soft);
}

.formas-badge-free {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.formas-badge-limited {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--formas-cyan-soft);
}

.formas-badge-founder {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--formas-cyan-bright);
}


/* ========== ENTRY ANIMATIONS ========== */

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

@keyframes formas-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes formas-slide-in-bottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.formas-animate-in {
  animation: formas-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.formas-animate-zoom {
  animation: formas-zoom-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.formas-animate-slide {
  animation: formas-slide-in-bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered children */
.formas-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  animation: formas-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.formas-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.formas-stagger > *:nth-child(2) { animation-delay: 0.15s; }
.formas-stagger > *:nth-child(3) { animation-delay: 0.2s; }
.formas-stagger > *:nth-child(4) { animation-delay: 0.25s; }
.formas-stagger > *:nth-child(5) { animation-delay: 0.3s; }
.formas-stagger > *:nth-child(6) { animation-delay: 0.35s; }
.formas-stagger > *:nth-child(7) { animation-delay: 0.4s; }
.formas-stagger > *:nth-child(8) { animation-delay: 0.45s; }


/* ========== TYPOGRAPHY ========== */

.formas-heading-xl {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--formas-text-primary);
}

.formas-heading-lg {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--formas-text-primary);
}

.formas-heading-md {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--formas-text-primary);
}

.formas-heading-sm {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--formas-text-primary);
}

.formas-text-lg {
  font-size: 18px;
  line-height: 1.6;
  color: var(--formas-text-secondary);
}

.formas-text-md {
  font-size: 14px;
  line-height: 1.5;
  color: var(--formas-text-secondary);
}

.formas-text-sm {
  font-size: 12px;
  line-height: 1.4;
  color: var(--formas-text-muted);
}

.formas-text-muted {
  color: var(--formas-text-muted);
}

/* Gradient text - Cyber Cyan */
.formas-text-gradient {
  background: linear-gradient(135deg, var(--formas-cyan-bright) 0%, var(--formas-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════
   PERSONALIZED GREETING - Onboarding welcome
═══════════════════════════════════════════════════════════════ */
.greeting-title {
  font-size: 36px !important;
  font-weight: 700 !important;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #E2E8F0 30%,
    #00E5FF 60%,
    #06B6D4 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: greetingShimmer 3s ease-in-out infinite;
  background-size: 200% auto;
}

@keyframes greetingShimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* All wizard subtitles get enhanced styling */
.wizard-sub-title {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 750px;
  margin: 8px auto 0;
  line-height: 1.6;
}

/* Greeting subtitle gets slightly more emphasis */
.greeting-subtitle {
  color: rgba(255, 255, 255, 0.75) !important;
  max-width: 750px;
}

@media (max-width: 640px) {
  .greeting-title {
    font-size: 28px !important;
  }
  
  .wizard-sub-title,
  .greeting-subtitle {
    font-size: 14px !important;
  }
}


/* ========== UTILITY CLASSES ========== */

.formas-text-center { text-align: center; }
.formas-flex { display: flex; }
.formas-flex-col { flex-direction: column; }
.formas-items-center { align-items: center; }
.formas-justify-center { justify-content: center; }
.formas-justify-between { justify-content: space-between; }
.formas-gap-sm { gap: var(--formas-spacing-sm); }
.formas-gap-md { gap: var(--formas-spacing-md); }
.formas-gap-lg { gap: var(--formas-spacing-lg); }
.formas-w-full { width: 100%; }
.formas-relative { position: relative; }


/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  .formas-heading-xl {
    font-size: 36px;
  }
  
  .formas-heading-lg {
    font-size: 28px;
  }
  
  .formas-heading-md {
    font-size: 20px;
  }
  
  .formas-glass-heavy {
    padding: 32px 24px;
    border-radius: var(--formas-radius-md);
  }
}


/* ========== VERIFIED BADGE - White Theme ========== */

/* Verified badge icon - converts to white using CSS filter */
.formas-verified-icon,
.header-verified-badge img,
.verified-badge img,
#header-verified-badge img,
#verified-badge img,
.welcome-verified-badge img {
  filter: var(--formas-verified-filter, brightness(0) invert(1));
  -webkit-filter: var(--formas-verified-filter, brightness(0) invert(1));
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

/* Verified text - white color */
.verified-badge .verified-text {
  color: #ffffff !important;
}

