/* Coach Caren - Executive Neuro-Performance & Circadian Biology
   Native Standalone CSS - Zero Tailwind CDN Runtime Delay
   Target: Core Web Vitals LCP < 1.2s, CLS 0.000 */

:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --color-brand-50: #f0fdf4;
  --color-brand-100: #dcfce7;
  --color-brand-200: #bbf7d0;
  --color-brand-500: #10b981;
  --color-brand-600: #059669;
  --color-brand-700: #047857;
  --color-brand-800: #065f46;
  --color-brand-900: #064e3b;
  --color-brand-dark: #0a192f;
  
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  --color-slate-950: #020617;
  
  --color-amber-400: #fbbf24;
  --color-amber-500: #f59e0b;
}

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

html {
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-slate-950);
  color: var(--color-slate-100);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

/* Typography Classes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.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.15; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.italic { font-style: italic; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.underline { text-decoration: underline; }

/* Layout Utilities */
.container { width: 100%; margin-right: auto; margin-left: auto; padding-right: 1rem; padding-left: 1rem; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5, .py-2-5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

/* Display & Flex */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.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-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }

/* Grid columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }

/* Colors - Background */
.bg-slate-950 { background-color: var(--color-slate-950); }
.bg-slate-900 { background-color: var(--color-slate-900); }
.bg-slate-800 { background-color: var(--color-slate-800); }
.bg-slate-700 { background-color: var(--color-slate-700); }
.bg-brand-dark { background-color: var(--color-brand-dark); }
.bg-brand-50 { background-color: var(--color-brand-50); }
.bg-brand-100 { background-color: var(--color-brand-100); }
.bg-brand-500 { background-color: var(--color-brand-500); }
.bg-brand-600 { background-color: var(--color-brand-600); }
.bg-brand-700 { background-color: var(--color-brand-700); }
.bg-brand-800 { background-color: var(--color-brand-800); }
.bg-brand-900 { background-color: var(--color-brand-900); }
.bg-brand-900\/80 { background-color: rgba(6, 78, 59, 0.8); }
.bg-amber-500 { background-color: var(--color-amber-500); }

/* Colors - Text */
.text-white { color: #ffffff; }
.text-slate-100 { color: var(--color-slate-100); }
.text-slate-200 { color: var(--color-slate-200); }
.text-slate-300 { color: var(--color-slate-300); }
.text-slate-400 { color: var(--color-slate-400); }
.text-slate-500 { color: var(--color-slate-500); }
.text-brand-100 { color: var(--color-brand-100); }
.text-brand-300 { color: #86efac; }
.text-brand-400 { color: #34d399; }
.text-brand-500 { color: var(--color-brand-500); }
.text-brand-600 { color: var(--color-brand-600); }
.text-amber-400 { color: var(--color-amber-400); }
.text-amber-500 { color: var(--color-amber-500); }

/* Borders */
.border { border: 1px solid var(--color-slate-800); }
.border-t { border-top: 1px solid var(--color-slate-800); }
.border-b { border-bottom: 1px solid var(--color-slate-800); }
.border-dashed { border-style: dashed; }
.border-slate-800 { border-color: var(--color-slate-800); }
.border-slate-900 { border-color: var(--color-slate-900); }
.border-brand-500\/20 { border-color: rgba(16, 185, 129, 0.2); }
.border-brand-500\/40 { border-color: rgba(16, 185, 129, 0.4); }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows & Transitions */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5); }
.transition { transition: all 150ms ease-in-out; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; }
.hover\:bg-brand-600:hover { background-color: var(--color-brand-600); }
.hover\:bg-slate-800:hover { background-color: var(--color-slate-800); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-brand-400:hover { color: var(--color-brand-400); }
.hover\:text-slate-300:hover { color: var(--color-slate-300); }
.hover\:underline:hover { text-decoration: underline; }

/* Forms */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-slate-800);
  border-radius: 0.75rem;
  background-color: var(--color-slate-900);
  color: #ffffff;
  font-size: 0.875rem;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-brand-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Zero-CLS AdSense Slot Container */
.adsense-slot-container {
  min-height: 280px;
  min-width: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Zero-CLS Responsive Video Wrappers & Multi-Image Galleries */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--color-slate-900);
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid var(--color-slate-800);
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.media-gallery figure {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--color-slate-900);
  border: 1px solid var(--color-slate-800);
}
.media-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.media-gallery figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--color-slate-400);
}
.biohack-protocol-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(6, 78, 59, 0.3));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  padding: 1.75rem;
  margin: 2rem 0;
}

/* Cards */
.article-card {
  background-color: var(--color-slate-900);
  border: 1px solid var(--color-slate-800);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-brand-500);
}

/* Responsive Media Queries */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-sm { font-size: 0.875rem; }
  .sm\:text-base { font-size: 1rem; }
  .sm\:text-lg { font-size: 1.125rem; }
  .sm\:text-2xl { font-size: 1.5rem; }
  .sm\:text-3xl { font-size: 1.875rem; }
  .sm\:text-4xl { font-size: 2.25rem; }
  .sm\:text-5xl { font-size: 3rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:justify-start { justify-content: flex-start; }
  .lg\:max-w-none { max-width: none; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-left { text-align: left; }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:p-12 { padding: 3rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:col-span-7 { grid-column: span 7 / span 7; }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:pt-20 { padding-top: 5rem; }
  .md\:pb-28 { padding-bottom: 7rem; }
}

/* Supplemental Executive Neuro-Performance Styles */
.antialiased { -webkit-font-smoothing: antialiased; }
.scroll-smooth { scroll-behavior: smooth; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.font-sans { font-family: var(--font-sans); }
.min-h-screen { min-height: 100vh; }
.flex-grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }
.list-disc { list-style-type: disc; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.object-cover { object-fit: cover; }
.pointer-events-none { pointer-events: none; }

.backdrop-blur { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.blur-xl { filter: blur(24px); }
.blur-3xl { filter: blur(64px); }
.filter { filter: var(--tw-filter, none); }
.opacity-30 { opacity: 0.3; }
.opacity-75 { opacity: 0.75; }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transform { transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)); }

/* Dark Backgrounds & Translucent Containers */
.bg-slate-900\/30 { background-color: rgba(15, 23, 42, 0.3); }
.bg-slate-900\/40 { background-color: rgba(15, 23, 42, 0.4); }
.bg-slate-900\/50 { background-color: rgba(15, 23, 42, 0.5); }
.bg-slate-900\/80 { background-color: rgba(15, 23, 42, 0.8); }
.bg-slate-950\/80 { background-color: rgba(2, 6, 23, 0.8); }
.bg-slate-950\/90 { background-color: rgba(2, 6, 23, 0.9); }
.bg-brand-500\/10 { background-color: rgba(16, 185, 129, 0.1); }
.bg-brand-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.bg-brand-900\/80 { background-color: rgba(6, 78, 59, 0.8); }
.bg-brand-950\/60 { background-color: rgba(2, 44, 34, 0.6); }
.bg-rose-500 { background-color: #f43f5e; }
.bg-amber-950\/40 { background-color: rgba(69, 26, 3, 0.4); }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent; }

/* Gradients */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops, #0f172a, #020617)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, #0f172a, #020617)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops, #0f172a, #020617)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops, #0f172a, #020617)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops, #0f172a, #020617)); }
.from-brand-500 { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
.from-brand-600 { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); }
.from-brand-900\/30 { --tw-gradient-from: rgba(6, 78, 59, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); }
.from-slate-900 { --tw-gradient-from: #0f172a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.from-slate-950 { --tw-gradient-from: #020617; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 6, 23, 0)); }
.via-emerald-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); }
.via-slate-900 { --tw-gradient-stops: var(--tw-gradient-from), #0f172a, var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.via-slate-950 { --tw-gradient-stops: var(--tw-gradient-from), #020617, var(--tw-gradient-to, rgba(2, 6, 23, 0)); }
.to-brand-950\/40 { --tw-gradient-to: rgba(2, 44, 34, 0.4); }
.to-emerald-400 { --tw-gradient-to: #34d399; }
.to-slate-950 { --tw-gradient-to: #020617; }
.to-teal-200 { --tw-gradient-to: #99f6e4; }
.to-teal-500 { --tw-gradient-to: #14b8a6; }
.to-transparent { --tw-gradient-to: transparent; }

/* Borders & Rings */
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; border-color: var(--color-slate-800); }
.border-slate-700 { border-color: #334155; }
.border-slate-800\/80 { border-color: rgba(30, 41, 59, 0.8); }
.border-brand-500\/20 { border-color: rgba(16, 185, 129, 0.2); }
.border-brand-500\/30 { border-color: rgba(16, 185, 129, 0.3); }
.border-amber-500\/40 { border-color: rgba(245, 158, 11, 0.4); }

/* Typography & Sizing */
.text-amber-200\/90 { color: rgba(253, 230, 138, 0.9); }
.text-amber-300 { color: #fcd34d; }
.text-emerald-400 { color: #34d399; }
.text-rose-400 { color: #fb7185; }
.text-slate-950 { color: #020617; }
.text-\[10px\] { font-size: 10px; line-height: 14px; }
.leading-\[1\.12\] { line-height: 1.12; }

.h-18 { height: 4.5rem; }
.h-60 { height: 15rem; }
.w-60 { width: 15rem; }
.h-full { height: 100%; }
.h-2 { height: 0.5rem; } .w-2 { width: 0.5rem; }
.h-2\.5 { height: 0.625rem; } .w-2\.5 { width: 0.625rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; } .w-4 { width: 1rem; }
.h-5 { height: 1.25rem; } .w-5 { width: 1.25rem; }
.h-6 { height: 1.5rem; } .w-6 { width: 1.5rem; }
.w-\[38\%\] { width: 38%; }
.w-\[94\%\] { width: 94%; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.-inset-1 { top: -0.25rem; right: -0.25rem; bottom: -0.25rem; left: -0.25rem; }
.-top-20 { top: -5rem; }
.-right-20 { right: -5rem; }
.left-6 { left: 1.5rem; }
.right-6 { right: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }

/* Shadows */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4); }
.shadow-brand-500\/10 { box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.1); }
.shadow-brand-500\/20 { box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2); }
.shadow-brand-500\/25 { box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25); }

/* Spacing */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-10 { gap: 2.5rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pl-6 { padding-left: 1.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-3\.5 > * + * { margin-top: 0.875rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }

/* Form Focus & Hovers */
.focus\:ring-2:focus { box-shadow: 0 0 0 2px #10b981; }
.focus\:ring-brand-500:focus { --tw-ring-color: #10b981; }
.focus\:border-transparent:focus { border-color: transparent; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }

.hover\:bg-brand-500\/90:hover { background-color: rgba(16, 185, 129, 0.9); }
.hover\:border-brand-500:hover { border-color: #10b981; }
.hover\:border-brand-500\/50:hover { border-color: rgba(16, 185, 129, 0.5); }
.hover\:border-slate-700:hover { border-color: #334155; }
.hover\:text-brand-300:hover { color: #6ee7b7; }
.hover\:text-brand-500:hover { color: #10b981; }
.hover\:shadow-brand-500\/25:hover { box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }

.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-brand-400 { color: #34d399; }
.group:hover .group-hover\:text-brand-500 { color: #10b981; }
.group:hover .group-hover\:underline { text-decoration: underline; }

