/* WRKPro Landing Page - Static Styles */
/* Generated from Tailwind classes used in the page */

/* ========================================
   CSS Reset & Base
   ======================================== */

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* ========================================
   CSS Custom Properties (Theme)
   ======================================== */

:root {
  --color-primary: #DC2626;
  --color-primary-hover: #B91C1C;
  --color-background: #FAFAF9;
  --color-surface: #FFFFFF;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray-200: #E5E5E5;
  --color-gray-300: #D4D4D4;
  --color-gray-400: #A3A3A3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --font-sans: 'Work Sans', sans-serif;
}

/* ========================================
   Base Styles
   ======================================== */

body {
  background-color: var(--color-background);
  font-family: var(--font-sans);
  color: var(--color-black);
}

/* ========================================
   Layout Utilities
   ======================================== */

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

.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* ========================================
   Sizing Utilities
   ======================================== */

.w-full { width: 100%; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }

.min-h-screen { min-height: 100vh; }

.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }

.max-h-\[90vh\] { max-height: 90vh; }

/* ========================================
   Spacing Utilities
   ======================================== */

/* Padding */
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pb-0 { padding-bottom: 0; }
.pt-2 { padding-top: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-6 { margin-right: 1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* Space Between */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* Gap */
.gap-8 { gap: 2rem; }

/* ========================================
   Typography Utilities
   ======================================== */

/* Font Size */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

/* Font Weight */
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* Letter Spacing */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }

/* Line Height */
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }

/* Text Alignment */
.text-center { text-align: center; }

/* Text Colors */
.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-gray-300 { color: var(--color-gray-300); }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-800 { color: var(--color-gray-800); }
.text-primary { color: var(--color-primary); }

/* ========================================
   Background Utilities
   ======================================== */

.bg-background { background-color: var(--color-background); }
.bg-surface { background-color: var(--color-surface); }
.bg-black { background-color: var(--color-black); }
.bg-primary { background-color: var(--color-primary); }
.bg-transparent { background-color: transparent; }

.bg-background\/80 { background-color: rgba(250, 250, 249, 0.8); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }

/* ========================================
   Border Utilities
   ======================================== */

.border-0 { border-width: 0; }
.border-b-2 { border-bottom-width: 2px; border-style: solid; }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }

/* ========================================
   Effects Utilities
   ======================================== */

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ========================================
   Transition Utilities
   ======================================== */

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

/* ========================================
   Interactive States
   ======================================== */

.cursor-pointer { cursor: pointer; }

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

.hover\:text-gray-500:hover {
  color: var(--color-gray-500);
}

.hover\:text-gray-700:hover {
  color: var(--color-gray-700);
}

.hover\:text-black:hover {
  color: var(--color-black);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-\[1\.02\]:hover {
  transform: scale(1.02);
}

.group:hover .group-hover\:text-black {
  color: var(--color-black);
}

/* Focus States */
.focus\:border-primary:focus {
  border-color: var(--color-primary);
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-0:focus {
  box-shadow: none;
}

/* ========================================
   Form Utilities
   ======================================== */

.accent-primary {
  accent-color: var(--color-primary);
}

/* ========================================
   Custom Utilities
   ======================================== */

/* Primary color with opacity */
.text-primary\/40 {
  color: rgba(220, 38, 38, 0.4);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 100;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* Focus ring utilities */
.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--color-primary);
}

.focus\:ring-primary\/20:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.focus\:ring-primary\/50:focus {
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.5);
}

/* Honeypot field - hidden from humans */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* Larger radio/checkbox for touch */
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }

/* Small vertical padding for touch targets */
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }

/* Text balance for better line breaks */
.text-balance {
  text-wrap: balance;
}

/* ========================================
   Responsive Breakpoints
   ======================================== */

/* Small screens (640px+) */
@media (min-width: 640px) {
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

/* Medium screens (768px+) */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .md\:p-12 { padding: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }

  .md\:gap-12 { gap: 3rem; }

  .md\:mr-8 { margin-right: 2rem; }

  .md\:ml-\[10\%\] { margin-left: 10%; }
  .md\:mr-\[10\%\] { margin-right: 10%; }
  .md\:ml-auto { margin-left: auto; }
  .md\:mr-auto { margin-right: auto; }

  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-8xl { font-size: 6rem; line-height: 1; }
}

/* Large screens (1024px+) */
@media (min-width: 1024px) {
  .lg\:ml-\[15\%\] { margin-left: 15%; }
  .lg\:mr-\[15\%\] { margin-right: 15%; }

  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-9xl { font-size: 8rem; line-height: 1; }
}
