/* Landing Page Styles - Compiled CSS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #FFC857;
  --accent: #2A6F82;
  --dark: #393E46;
  --light: #EAEAEA;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur-form: 900ms;
  --dur-copy: 320ms;
  --radius: 14px;
  --fuse-dur: 5s;
  --headerH: 0px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  color: var(--dark);
  line-height: 1.5;
}

/* Utility Classes */
.font-sans { font-family: inherit; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.bg-white { background-color: #fff; }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-light { background-color: var(--light); }
.text-dark { color: var(--dark); }
.text-white { color: #fff; }
.text-accent { color: var(--accent); }

/* Layout */
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-items-stretch { justify-items: stretch; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Padding & Margin */
.p-5 { padding: 1.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.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; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-sm { max-width: 24rem; }

/* Typography */
.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-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.625; }
.text-left { text-align: left; }

/* Colors & Opacity */
.text-dark\/90 { color: rgba(57, 62, 70, 0.9); }
.text-dark\/80 { color: rgba(57, 62, 70, 0.8); }
.text-dark\/70 { color: rgba(57, 62, 70, 0.7); }
.text-dark\/50 { color: rgba(57, 62, 70, 0.5); }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }

/* Border Radius */
.ui-rounded { border-radius: var(--radius); }
.rounded-md { border-radius: 0.375rem; }

/* Special Components */
.collapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height var(--dur-form) var(--ease), opacity var(--dur-form) ease, transform var(--dur-form) var(--ease);
}
.collapsible.open {
  max-height: 760px;
  opacity: 1;
  transform: translateY(0);
}

.heroCopy {
  opacity: 1;
  max-height: 420px;
  transition: opacity var(--dur-copy) ease, max-height var(--dur-copy) var(--ease), margin var(--dur-copy) var(--ease);
}
.heroCopy.gone {
  opacity: 0;
  max-height: 0;
  margin: 0 !important;
}

.btn {
  border-radius: var(--radius);
  transition: background-color 1500ms var(--ease), color 400ms var(--ease), transform var(--dur-form) var(--ease), box-shadow var(--dur-form) var(--ease);
  will-change: transform;
  border: none;
  cursor: pointer;
}
.btn.promote {
  background: #fff !important;
  color: var(--accent) !important;
  transform: translateY(-22px);
  box-shadow: 0 14px 30px rgb(0 0 0 / 0.12);
}

.success {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--light);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgb(0 0 0 / 0.10);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 420ms ease, transform 420ms var(--ease);
  position: relative;
}
.success.show {
  opacity: 1;
  transform: translateY(0);
}
.success .close {
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
}

.fuse {
  height: 6px;
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
}
.fuse > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--primary);
}
.fuse.run > span {
  animation: burn var(--fuse-dur) linear forwards;
}

.text-shadow-hero {
  text-shadow: 0 1px 0 rgba(0,0,0,.12), 0 2px 6px rgba(57,62,70,.35);
}
.text-shadow-sub {
  text-shadow: 0 1px 0 rgba(0,0,0,.08), 0 2px 4px rgba(57,62,70,.22);
}

/* Form Elements */
input[type="text"],
input[type="email"],
textarea {
  border: none;
  outline: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
input[type="radio"] {
  accent-color: var(--dark);
}
textarea {
  resize: vertical;
  font-family: inherit;
}

/* Header Padding */
.header-pad {
  padding-top: var(--headerH);
}
.mobile-fill {
  min-height: calc(100svh - var(--headerH));
}

/* Focus Styles */
.focus\:outline-none:focus {
  outline: none;
}
.focus\:ring-2:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-white\/60:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}
.focus\:ring-offset-2:focus {
  outline-offset: 2px;
}
.focus\:ring-offset-primary:focus {
  outline-offset: 2px;
}

/* Animations */
@keyframes burn {
  from { width: 0%; }
  to { width: 100%; }
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:max-w-md { max-width: 28rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .text-shadow-hero {
    text-shadow: 0 1px 0 rgba(0,0,0,.10), 0 4px 14px rgba(57,62,70,.28);
  }
}

@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\:max-w-lg { max-width: 32rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

@media (min-width: 1024px) {
  .lg\:inline { display: inline; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-center { justify-content: center; }
  .lg\:gap-0 { gap: 0; }
  .lg\:mt-2 { margin-top: 0.5rem; }
  .lg\:mt-3 { margin-top: 0.75rem; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  .lg\:text-center { text-align: center; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:justify-items-center { justify-items: center; }
  .lg\:max-w-md { max-width: 28rem; }
  .lg\:block { display: block; }
}

@media (max-width: 1023px) {
  .lg\:hidden { display: none; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .collapsible,
  .heroCopy,
  .success,
  .btn {
    transition: none !important;
  }
  .fuse.run > span {
    animation: none;
    width: 100%;
  }
}

/* Z-index */
.z-50 { z-index: 50; }

/* Hover States */
.text-dark\/70:hover {
  color: var(--dark);
}
.hover\:brightness-95:hover {
  filter: brightness(0.95);
}

/* Placeholder Styles */
::placeholder {
  color: rgba(57, 62, 70, 0.5);
}
.placeholder\:text-dark\/50::placeholder {
  color: rgba(57, 62, 70, 0.5);
}


