/* line 4, app/assets/stylesheets/home_page_components.scss */
* {
  box-sizing: border-box;
}

/* line 42, app/assets/stylesheets/home_page_components.scss */
.btn-hero {
  background: linear-gradient(135deg, #4b9b7d, #87c5ae);
  color: #f6fbf4;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -10px rgba(75, 155, 125, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* line 56, app/assets/stylesheets/home_page_components.scss */
.btn-hero:hover {
  box-shadow: 0 10px 30px -10px rgba(221, 136, 164, 0.3);
  transform: scale(1.05);
}

/* line 62, app/assets/stylesheets/home_page_components.scss */
.btn-coral {
  background-color: #dd88a4;
  color: #f6fbf4;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px -10px rgba(221, 136, 164, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* line 74, app/assets/stylesheets/home_page_components.scss */
.btn-coral:hover {
  box-shadow: 0 10px 30px -10px rgba(75, 155, 125, 0.3);
  transform: scale(1.05);
}

/* line 80, app/assets/stylesheets/home_page_components.scss */
.btn-outline {
  border: 2px solid #4b9b7d;
  color: #4b9b7d;
  background-color: transparent;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

/* line 91, app/assets/stylesheets/home_page_components.scss */
.btn-outline:hover {
  background-color: #4b9b7d;
  color: #f6fbf4;
}

/* line 97, app/assets/stylesheets/home_page_components.scss */
.card-floating {
  background-color: #f6fbf4;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px -5px rgba(75, 155, 125, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 104, app/assets/stylesheets/home_page_components.scss */
.card-floating:hover {
  box-shadow: 0 10px 30px -10px rgba(75, 155, 125, 0.3);
  transform: translateY(-4px);
}

/* line 110, app/assets/stylesheets/home_page_components.scss */
.gradient-bg {
  background: linear-gradient(180deg, #f6fbf4, #e7efeb);
}

/* line 114, app/assets/stylesheets/home_page_components.scss */
.sqrl-home-hero {
  --sqrl-space-6: 2.25rem;
  --sqrl-space-8: 3rem;
  --sqrl-space-10: 3.75rem;
  --sqrl-home-hero-offset: 9rem;
  min-height: auto;
}

/* line 122, app/assets/stylesheets/home_page_components.scss */
.sqrl-home-hero__container {
  padding-top: var(--sqrl-space-8);
  padding-bottom: var(--sqrl-space-8);
}

/* line 127, app/assets/stylesheets/home_page_components.scss */
.trusted-schools {
  --trusted-schools-bg: var(--sqrl-bg-default, #f8f4ee);
  --trusted-schools-bg-muted: var(--sqrl-bg-highlight, #eaebc4);
  --trusted-schools-accent: var(--sqrl-accent, #e6974c);
  --trusted-schools-brand: var(--sqrl-text-brand, #a87555);
  --trusted-schools-text: var(--color-text-dark, #2a170d);
  --trusted-schools-muted: var(--color-text-muted, rgba(91, 78, 75, 0.8));
  --trusted-schools-space-1: var(--sqrl-space-1, 0.375rem);
  --trusted-schools-space-2: var(--sqrl-space-2, 0.75rem);
  --trusted-schools-space-3: var(--sqrl-space-3, 1.125rem);
  --trusted-schools-space-4: var(--sqrl-space-4, 1.5rem);
  --trusted-schools-space-6: var(--sqrl-space-6, 2.25rem);
  --trusted-schools-space-8: var(--sqrl-space-8, 3rem);
  --trusted-schools-radius-sm: var(--sqrl-radius-sm, 0.375rem);
  background: linear-gradient(180deg, #ffffff 0%, var(--trusted-schools-bg) 100%);
  border-block: 1px solid rgba(193, 154, 119, 0.36);
  color: var(--trusted-schools-text);
  padding: var(--trusted-schools-space-8) var(--trusted-schools-space-4);
}

/* line 147, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__container {
  display: grid;
  gap: var(--trusted-schools-space-6);
  margin: 0 auto;
  max-width: 72rem;
}

/* line 154, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__intro {
  max-width: 43rem;
}

/* line 158, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__eyebrow {
  color: var(--trusted-schools-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 var(--trusted-schools-space-2);
  text-transform: uppercase;
}

/* line 167, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__intro h2 {
  color: var(--trusted-schools-text);
  font-family: var(--sqrl-font-heading, "Montserrat", var(--font-family-primary, sans-serif));
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

/* line 177, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__intro p:last-child {
  color: var(--trusted-schools-muted);
  font-family: var(--sqrl-font-body, "Inter", var(--font-family-primary, sans-serif));
  font-size: 1.125rem;
  line-height: 1.6;
  margin: var(--trusted-schools-space-3) 0 0;
}

/* line 185, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__grid {
  display: grid;
  gap: var(--trusted-schools-space-3);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

/* line 191, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__card {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(193, 154, 119, 0.48);
  border-radius: var(--trusted-schools-radius-sm);
  color: var(--trusted-schools-text);
  display: grid;
  gap: var(--trusted-schools-space-3);
  grid-template-columns: 6rem minmax(0, 1fr) auto;
  min-height: 8.25rem;
  padding: var(--trusted-schools-space-3);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

/* line 206, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__card:hover,
.trusted-schools__card:focus-visible {
  border-color: var(--trusted-schools-accent);
  box-shadow: 0 18px 36px -30px rgba(42, 23, 13, 0.48);
  transform: translateY(-2px);
}

/* line 213, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__card:focus-visible {
  outline: 3px solid rgba(230, 151, 76, 0.32);
  outline-offset: 3px;
}

/* line 218, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__logo-wrap {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(193, 154, 119, 0.28);
  border-radius: var(--trusted-schools-radius-sm);
  display: flex;
  height: 6rem;
  justify-content: center;
  padding: var(--trusted-schools-space-2);
  width: 6rem;
}

/* line 230, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__logo {
  display: block;
  max-height: 4.5rem;
  max-width: 100%;
  object-fit: contain;
}

/* line 237, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__copy {
  display: grid;
  gap: var(--trusted-schools-space-1);
  min-width: 0;
}

/* line 243, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__name {
  color: var(--trusted-schools-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* line 250, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__location {
  color: var(--trusted-schools-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* line 256, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__visit {
  align-items: center;
  background: var(--trusted-schools-bg-muted);
  border-radius: var(--trusted-schools-radius-sm);
  color: var(--trusted-schools-brand);
  display: flex;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

/* line 267, app/assets/stylesheets/home_page_components.scss */
.trusted-schools__visit-icon {
  height: 1.125rem;
  width: 1.125rem;
}

@media (max-width: 639px) {
  /* line 273, app/assets/stylesheets/home_page_components.scss */
  .sqrl-home-hero__container {
    padding-top: var(--sqrl-space-6);
    padding-bottom: var(--sqrl-space-6);
  }
  /* line 278, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools {
    padding: var(--trusted-schools-space-6) var(--trusted-schools-space-3);
  }
  /* line 282, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__container {
    gap: var(--trusted-schools-space-4);
  }
  /* line 286, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__intro h2 {
    font-size: 2rem;
  }
  /* line 290, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__intro p:last-child {
    font-size: 1rem;
    line-height: 1.5;
  }
  /* line 295, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__card {
    grid-template-columns: 4.5rem minmax(0, 1fr) auto;
    min-height: 6.75rem;
    padding: var(--trusted-schools-space-2);
  }
  /* line 301, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__logo-wrap {
    height: 4.5rem;
    width: 4.5rem;
  }
  /* line 306, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__logo {
    max-height: 3.375rem;
  }
  /* line 310, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__visit {
    height: 1.875rem;
    width: 1.875rem;
  }
}

@media (min-width: 1024px) {
  /* line 317, app/assets/stylesheets/home_page_components.scss */
  .sqrl-home-hero {
    min-height: clamp(33rem, calc(100vh - var(--sqrl-home-hero-offset)), 42rem);
  }
  /* line 321, app/assets/stylesheets/home_page_components.scss */
  .sqrl-home-hero__container {
    padding-top: var(--sqrl-space-10);
    padding-bottom: var(--sqrl-space-10);
  }
}

@media (max-width: 960px) {
  /* line 328, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__container {
    gap: var(--trusted-schools-space-4);
  }
  /* line 332, app/assets/stylesheets/home_page_components.scss */
  .trusted-schools__grid {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  }
}

/* line 338, app/assets/stylesheets/home_page_components.scss */
.text-foreground {
  color: #305044;
}

/* line 339, app/assets/stylesheets/home_page_components.scss */
.text-muted-foreground {
  color: #7b9d91;
}

/* line 340, app/assets/stylesheets/home_page_components.scss */
.text-primary {
  color: #4b9b7d;
}

/* line 341, app/assets/stylesheets/home_page_components.scss */
.text-secondary {
  color: #dd88a4;
}

/* line 342, app/assets/stylesheets/home_page_components.scss */
.text-success {
  color: #40bf91;
}

/* line 343, app/assets/stylesheets/home_page_components.scss */
.text-warning {
  color: #f2cc5a;
}

/* line 344, app/assets/stylesheets/home_page_components.scss */
.text-coral {
  color: #dd88a4;
}

/* line 345, app/assets/stylesheets/home_page_components.scss */
.text-sage {
  color: #4b9b7d;
}

/* line 346, app/assets/stylesheets/home_page_components.scss */
.bg-primary {
  background-color: #4b9b7d;
}

/* line 347, app/assets/stylesheets/home_page_components.scss */
.bg-secondary {
  background-color: #dd88a4;
}

/* line 348, app/assets/stylesheets/home_page_components.scss */
.bg-accent {
  background-color: #baafcf;
}

/* line 349, app/assets/stylesheets/home_page_components.scss */
.bg-card {
  background-color: #f6fbf4;
}

/* line 350, app/assets/stylesheets/home_page_components.scss */
.bg-background {
  background-color: #f6fbf4;
}

/* line 351, app/assets/stylesheets/home_page_components.scss */
.bg-foreground {
  background-color: #305044;
}

/* line 352, app/assets/stylesheets/home_page_components.scss */
.bg-sage {
  background-color: #4b9b7d;
}

/* line 353, app/assets/stylesheets/home_page_components.scss */
.bg-coral {
  background-color: #dd88a4;
}

/* line 354, app/assets/stylesheets/home_page_components.scss */
.text-primary-foreground {
  color: #f6fbf4;
}

/* line 355, app/assets/stylesheets/home_page_components.scss */
.text-secondary-foreground {
  color: #f6fbf4;
}

/* line 356, app/assets/stylesheets/home_page_components.scss */
.text-accent-foreground {
  color: #305044;
}

/* line 357, app/assets/stylesheets/home_page_components.scss */
.text-background {
  color: #f6fbf4;
}

/* line 358, app/assets/stylesheets/home_page_components.scss */
.border-border {
  border-color: #cfe2d9;
}

/* line 361, app/assets/stylesheets/home_page_components.scss */
.bg-sage\/10 {
  background-color: rgba(75, 155, 125, 0.1);
}

/* line 362, app/assets/stylesheets/home_page_components.scss */
.bg-sage\/5 {
  background-color: rgba(75, 155, 125, 0.05);
}

/* line 363, app/assets/stylesheets/home_page_components.scss */
.bg-coral\/20 {
  background-color: rgba(221, 136, 164, 0.2);
}

/* line 364, app/assets/stylesheets/home_page_components.scss */
.bg-primary\/10 {
  background-color: rgba(75, 155, 125, 0.1);
}

/* line 365, app/assets/stylesheets/home_page_components.scss */
.bg-accent\/10 {
  background-color: rgba(186, 175, 207, 0.1);
}

/* line 366, app/assets/stylesheets/home_page_components.scss */
.bg-background\/80 {
  background-color: rgba(246, 251, 244, 0.8);
}

/* line 367, app/assets/stylesheets/home_page_components.scss */
.from-coral\/20 {
  --tw-gradient-from: rgba($secondary, 0.2);
}

/* line 368, app/assets/stylesheets/home_page_components.scss */
.from-coral\/10 {
  --tw-gradient-from: rgba($secondary, 0.1);
}

/* line 369, app/assets/stylesheets/home_page_components.scss */
.from-sage\/20 {
  --tw-gradient-from: rgba($primary, 0.2);
}

/* line 370, app/assets/stylesheets/home_page_components.scss */
.to-lavender\/20 {
  --tw-gradient-to: rgba($accent, 0.2);
}

/* line 371, app/assets/stylesheets/home_page_components.scss */
.to-lavender\/10 {
  --tw-gradient-to: rgba($accent, 0.1);
}

/* line 372, app/assets/stylesheets/home_page_components.scss */
.to-coral\/20 {
  --tw-gradient-to: rgba($secondary, 0.2);
}

/* line 373, app/assets/stylesheets/home_page_components.scss */
.fill-warning {
  fill: #f2cc5a;
}

/* line 374, app/assets/stylesheets/home_page_components.scss */
.fill-coral {
  fill: #dd88a4;
}

/* line 375, app/assets/stylesheets/home_page_components.scss */
.text-primary-foreground\/90 {
  color: rgba(246, 251, 244, 0.9);
}

/* line 378, app/assets/stylesheets/home_page_components.scss */
.bg-green-800 {
  background-color: #166534;
}

/* line 379, app/assets/stylesheets/home_page_components.scss */
.hover\:bg-green-700:hover {
  background-color: #15803d;
}

/* line 380, app/assets/stylesheets/home_page_components.scss */
.text-green-800 {
  color: #166534;
}

/* line 381, app/assets/stylesheets/home_page_components.scss */
.text-white {
  color: #ffffff;
}

/* line 382, app/assets/stylesheets/home_page_components.scss */
.bg-white {
  background-color: #ffffff;
}

/* line 383, app/assets/stylesheets/home_page_components.scss */
.bg-emerald-50 {
  background-color: #ecfdf5;
}

/* line 384, app/assets/stylesheets/home_page_components.scss */
.bg-lavender\/20 {
  background-color: rgba(186, 175, 207, 0.2);
}

/* line 387, app/assets/stylesheets/home_page_components.scss */
.lucide {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* line 396, app/assets/stylesheets/home_page_components.scss */
.lucide.fill {
  fill: currentColor;
}

/* line 403, app/assets/stylesheets/home_page_components.scss */
.bg-gradient-to-r.from-coral\/20.to-lavender\/20 {
  background-image: linear-gradient(to right, rgba(221, 136, 164, 0.2), rgba(186, 175, 207, 0.2));
}

/* line 406, app/assets/stylesheets/home_page_components.scss */
.bg-gradient-to-r.from-primary.to-primary-glow {
  background-image: linear-gradient(to right, #4b9b7d, #87c5ae);
}

/* line 412, app/assets/stylesheets/home_page_components.scss */
.bg-gradient-to-br.from-coral\/10.to-lavender\/10 {
  background-image: linear-gradient(to bottom right, rgba(221, 136, 164, 0.1), rgba(186, 175, 207, 0.1));
}

/* line 415, app/assets/stylesheets/home_page_components.scss */
.bg-gradient-to-br.from-sage\/20.to-coral\/20 {
  background-image: linear-gradient(to bottom right, rgba(75, 155, 125, 0.2), rgba(221, 136, 164, 0.2));
}

/* line 421, app/assets/stylesheets/home_page_components.scss */
.min-h-screen {
  min-height: 100vh;
}

/* line 422, app/assets/stylesheets/home_page_components.scss */
.max-w-7xl {
  max-width: 80rem;
}

/* line 423, app/assets/stylesheets/home_page_components.scss */
.max-w-6xl {
  max-width: 72rem;
}

/* line 424, app/assets/stylesheets/home_page_components.scss */
.max-w-4xl {
  max-width: 56rem;
}

/* line 425, app/assets/stylesheets/home_page_components.scss */
.max-w-3xl {
  max-width: 48rem;
}

/* line 426, app/assets/stylesheets/home_page_components.scss */
.max-w-2xl {
  max-width: 42rem;
}

/* line 427, app/assets/stylesheets/home_page_components.scss */
.max-w-lg {
  max-width: 32rem;
}

/* line 428, app/assets/stylesheets/home_page_components.scss */
.max-w-md {
  max-width: 28rem;
}

/* line 429, app/assets/stylesheets/home_page_components.scss */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* line 432, app/assets/stylesheets/home_page_components.scss */
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

/* line 433, app/assets/stylesheets/home_page_components.scss */
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* line 434, app/assets/stylesheets/home_page_components.scss */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* line 435, app/assets/stylesheets/home_page_components.scss */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* line 436, app/assets/stylesheets/home_page_components.scss */
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* line 437, app/assets/stylesheets/home_page_components.scss */
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* line 438, app/assets/stylesheets/home_page_components.scss */
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 439, app/assets/stylesheets/home_page_components.scss */
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* line 440, app/assets/stylesheets/home_page_components.scss */
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* line 441, app/assets/stylesheets/home_page_components.scss */
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* line 442, app/assets/stylesheets/home_page_components.scss */
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* line 443, app/assets/stylesheets/home_page_components.scss */
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* line 444, app/assets/stylesheets/home_page_components.scss */
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* line 445, app/assets/stylesheets/home_page_components.scss */
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* line 446, app/assets/stylesheets/home_page_components.scss */
.p-2 {
  padding: 0.5rem;
}

/* line 447, app/assets/stylesheets/home_page_components.scss */
.p-3 {
  padding: 0.75rem;
}

/* line 448, app/assets/stylesheets/home_page_components.scss */
.p-4 {
  padding: 1rem;
}

/* line 449, app/assets/stylesheets/home_page_components.scss */
.p-6 {
  padding: 1.5rem;
}

/* line 450, app/assets/stylesheets/home_page_components.scss */
.p-8 {
  padding: 2rem;
}

/* line 451, app/assets/stylesheets/home_page_components.scss */
.p-12 {
  padding: 3rem;
}

/* line 454, app/assets/stylesheets/home_page_components.scss */
.mb-1 {
  margin-bottom: 0.25rem;
}

/* line 455, app/assets/stylesheets/home_page_components.scss */
.mb-2 {
  margin-bottom: 0.5rem;
}

/* line 456, app/assets/stylesheets/home_page_components.scss */
.mb-3 {
  margin-bottom: 0.75rem;
}

/* line 457, app/assets/stylesheets/home_page_components.scss */
.mb-4 {
  margin-bottom: 1rem;
}

/* line 458, app/assets/stylesheets/home_page_components.scss */
.mb-6 {
  margin-bottom: 1.5rem;
}

/* line 459, app/assets/stylesheets/home_page_components.scss */
.mb-8 {
  margin-bottom: 2rem;
}

/* line 460, app/assets/stylesheets/home_page_components.scss */
.mb-12 {
  margin-bottom: 3rem;
}

/* line 461, app/assets/stylesheets/home_page_components.scss */
.mb-16 {
  margin-bottom: 4rem;
}

/* line 462, app/assets/stylesheets/home_page_components.scss */
.mt-2 {
  margin-top: 0.5rem;
}

/* line 463, app/assets/stylesheets/home_page_components.scss */
.mt-4 {
  margin-top: 1rem;
}

/* line 464, app/assets/stylesheets/home_page_components.scss */
.mt-8 {
  margin-top: 2rem;
}

/* line 465, app/assets/stylesheets/home_page_components.scss */
.mt-12 {
  margin-top: 3rem;
}

/* line 466, app/assets/stylesheets/home_page_components.scss */
.mt-16 {
  margin-top: 4rem;
}

/* line 467, app/assets/stylesheets/home_page_components.scss */
.ml-1 {
  margin-left: 0.25rem;
}

/* line 468, app/assets/stylesheets/home_page_components.scss */
.ml-2 {
  margin-left: 0.5rem;
}

/* line 469, app/assets/stylesheets/home_page_components.scss */
.mr-2 {
  margin-right: 0.5rem;
}

/* line 470, app/assets/stylesheets/home_page_components.scss */
.mr-4 {
  margin-right: 1rem;
}

/* line 473, app/assets/stylesheets/home_page_components.scss */
.flex {
  display: flex;
}

/* line 474, app/assets/stylesheets/home_page_components.scss */
.inline-flex {
  display: inline-flex;
}

/* line 475, app/assets/stylesheets/home_page_components.scss */
.grid {
  display: grid;
}

/* line 476, app/assets/stylesheets/home_page_components.scss */
.items-center {
  align-items: center;
}

/* line 477, app/assets/stylesheets/home_page_components.scss */
.justify-center {
  justify-content: center;
}

/* line 478, app/assets/stylesheets/home_page_components.scss */
.gap-1 {
  gap: 0.25rem;
}

/* line 479, app/assets/stylesheets/home_page_components.scss */
.gap-2 {
  gap: 0.5rem;
}

/* line 480, app/assets/stylesheets/home_page_components.scss */
.gap-3 {
  gap: 0.75rem;
}

/* line 481, app/assets/stylesheets/home_page_components.scss */
.gap-4 {
  gap: 1rem;
}

/* line 482, app/assets/stylesheets/home_page_components.scss */
.gap-6 {
  gap: 1.5rem;
}

/* line 483, app/assets/stylesheets/home_page_components.scss */
.gap-8 {
  gap: 2rem;
}

/* line 484, app/assets/stylesheets/home_page_components.scss */
.gap-12 {
  gap: 3rem;
}

/* line 485, app/assets/stylesheets/home_page_components.scss */
.space-y-1 > * + * {
  margin-top: 0.25rem;
}

/* line 486, app/assets/stylesheets/home_page_components.scss */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* line 487, app/assets/stylesheets/home_page_components.scss */
.space-y-4 > * + * {
  margin-top: 1rem;
}

/* line 488, app/assets/stylesheets/home_page_components.scss */
.space-y-8 > * + * {
  margin-top: 2rem;
}

/* line 489, app/assets/stylesheets/home_page_components.scss */
.flex-col {
  flex-direction: column;
}

/* line 490, app/assets/stylesheets/home_page_components.scss */
.flex-wrap {
  flex-wrap: wrap;
}

/* line 491, app/assets/stylesheets/home_page_components.scss */
.flex-shrink-0 {
  flex-shrink: 0;
}

/* line 494, app/assets/stylesheets/home_page_components.scss */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* line 495, app/assets/stylesheets/home_page_components.scss */
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  /* line 498, app/assets/stylesheets/home_page_components.scss */
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* line 499, app/assets/stylesheets/home_page_components.scss */
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /* line 500, app/assets/stylesheets/home_page_components.scss */
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  /* line 501, app/assets/stylesheets/home_page_components.scss */
  .md\:gap-8 {
    gap: 2rem;
  }
  /* line 502, app/assets/stylesheets/home_page_components.scss */
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  /* line 503, app/assets/stylesheets/home_page_components.scss */
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  /* line 504, app/assets/stylesheets/home_page_components.scss */
  .md\:w-20 {
    width: 5rem;
  }
  /* line 505, app/assets/stylesheets/home_page_components.scss */
  .md\:h-20 {
    height: 5rem;
  }
  /* line 506, app/assets/stylesheets/home_page_components.scss */
  .md\:w-10 {
    width: 2.5rem;
  }
  /* line 507, app/assets/stylesheets/home_page_components.scss */
  .md\:h-10 {
    height: 2.5rem;
  }
  /* line 508, app/assets/stylesheets/home_page_components.scss */
  .md\:mb-4 {
    margin-bottom: 1rem;
  }
  /* line 509, app/assets/stylesheets/home_page_components.scss */
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  /* line 510, app/assets/stylesheets/home_page_components.scss */
  .md\:p-12 {
    padding: 3rem;
  }
}

@media (min-width: 640px) {
  /* line 514, app/assets/stylesheets/home_page_components.scss */
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  /* line 515, app/assets/stylesheets/home_page_components.scss */
  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  /* line 516, app/assets/stylesheets/home_page_components.scss */
  .sm\:flex-row {
    flex-direction: row;
  }
  /* line 517, app/assets/stylesheets/home_page_components.scss */
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  /* line 521, app/assets/stylesheets/home_page_components.scss */
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  /* line 522, app/assets/stylesheets/home_page_components.scss */
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  /* line 523, app/assets/stylesheets/home_page_components.scss */
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* line 524, app/assets/stylesheets/home_page_components.scss */
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /* line 525, app/assets/stylesheets/home_page_components.scss */
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  /* line 526, app/assets/stylesheets/home_page_components.scss */
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* line 530, app/assets/stylesheets/home_page_components.scss */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

/* line 531, app/assets/stylesheets/home_page_components.scss */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* line 532, app/assets/stylesheets/home_page_components.scss */
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

/* line 533, app/assets/stylesheets/home_page_components.scss */
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* line 534, app/assets/stylesheets/home_page_components.scss */
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

/* line 535, app/assets/stylesheets/home_page_components.scss */
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* line 536, app/assets/stylesheets/home_page_components.scss */
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

/* line 537, app/assets/stylesheets/home_page_components.scss */
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

/* line 538, app/assets/stylesheets/home_page_components.scss */
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

/* line 539, app/assets/stylesheets/home_page_components.scss */
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

/* line 540, app/assets/stylesheets/home_page_components.scss */
.font-medium {
  font-weight: 500;
}

/* line 541, app/assets/stylesheets/home_page_components.scss */
.font-semibold {
  font-weight: 600;
}

/* line 542, app/assets/stylesheets/home_page_components.scss */
.font-bold {
  font-weight: 700;
}

/* line 543, app/assets/stylesheets/home_page_components.scss */
.leading-tight {
  line-height: 1.25;
}

/* line 544, app/assets/stylesheets/home_page_components.scss */
.leading-relaxed {
  line-height: 1.625;
}

/* line 545, app/assets/stylesheets/home_page_components.scss */
.text-center {
  text-align: center;
}

/* line 546, app/assets/stylesheets/home_page_components.scss */
.text-left {
  text-align: left;
}

/* line 549, app/assets/stylesheets/home_page_components.scss */
.w-full {
  width: 100%;
}

/* line 550, app/assets/stylesheets/home_page_components.scss */
.h-full {
  height: 100%;
}

/* line 551, app/assets/stylesheets/home_page_components.scss */
.h-auto {
  height: auto;
}

/* line 552, app/assets/stylesheets/home_page_components.scss */
.w-4 {
  width: 1rem;
}

/* line 553, app/assets/stylesheets/home_page_components.scss */
.h-4 {
  height: 1rem;
}

/* line 554, app/assets/stylesheets/home_page_components.scss */
.w-5 {
  width: 1.25rem;
}

/* line 555, app/assets/stylesheets/home_page_components.scss */
.h-5 {
  height: 1.25rem;
}

/* line 556, app/assets/stylesheets/home_page_components.scss */
.w-8 {
  width: 2rem;
}

/* line 557, app/assets/stylesheets/home_page_components.scss */
.h-8 {
  height: 2rem;
}

/* line 558, app/assets/stylesheets/home_page_components.scss */
.w-10 {
  width: 2.5rem;
}

/* line 559, app/assets/stylesheets/home_page_components.scss */
.h-10 {
  height: 2.5rem;
}

/* line 560, app/assets/stylesheets/home_page_components.scss */
.w-12 {
  width: 3rem;
}

/* line 561, app/assets/stylesheets/home_page_components.scss */
.h-12 {
  height: 3rem;
}

/* line 562, app/assets/stylesheets/home_page_components.scss */
.w-16 {
  width: 4rem;
}

/* line 563, app/assets/stylesheets/home_page_components.scss */
.h-16 {
  height: 4rem;
}

/* line 564, app/assets/stylesheets/home_page_components.scss */
.w-20 {
  width: 5rem;
}

/* line 565, app/assets/stylesheets/home_page_components.scss */
.h-20 {
  height: 5rem;
}

/* line 569, app/assets/stylesheets/home_page_components.scss */
.lucide.h-4.w-4 {
  width: 1rem;
  height: 1rem;
}

/* line 570, app/assets/stylesheets/home_page_components.scss */
.lucide.h-5.w-5 {
  width: 1.25rem;
  height: 1.25rem;
}

/* line 571, app/assets/stylesheets/home_page_components.scss */
.lucide.h-8.w-8 {
  width: 2rem;
  height: 2rem;
}

/* line 572, app/assets/stylesheets/home_page_components.scss */
.lucide.h-10.w-10 {
  width: 2.5rem;
  height: 2.5rem;
}

/* line 573, app/assets/stylesheets/home_page_components.scss */
.lucide.h-12.w-12 {
  width: 3rem;
  height: 3rem;
}

/* line 577, app/assets/stylesheets/home_page_components.scss */
.relative {
  position: relative;
}

/* line 578, app/assets/stylesheets/home_page_components.scss */
.absolute {
  position: absolute;
}

/* line 579, app/assets/stylesheets/home_page_components.scss */
.top-0 {
  top: 0;
}

/* line 580, app/assets/stylesheets/home_page_components.scss */
.right-0 {
  right: 0;
}

/* line 581, app/assets/stylesheets/home_page_components.scss */
.bottom-0 {
  bottom: 0;
}

/* line 582, app/assets/stylesheets/home_page_components.scss */
.left-0 {
  left: 0;
}

/* line 583, app/assets/stylesheets/home_page_components.scss */
.-top-2 {
  top: -0.5rem;
}

/* line 584, app/assets/stylesheets/home_page_components.scss */
.-right-2 {
  right: -0.5rem;
}

/* line 585, app/assets/stylesheets/home_page_components.scss */
.-top-3 {
  top: -0.75rem;
}

/* line 586, app/assets/stylesheets/home_page_components.scss */
.-top-4 {
  top: -1rem;
}

/* line 587, app/assets/stylesheets/home_page_components.scss */
.-right-4 {
  right: -1rem;
}

/* line 588, app/assets/stylesheets/home_page_components.scss */
.-bottom-4 {
  bottom: -1rem;
}

/* line 589, app/assets/stylesheets/home_page_components.scss */
.-left-4 {
  left: -1rem;
}

/* line 590, app/assets/stylesheets/home_page_components.scss */
.top-1\/2 {
  top: 50%;
}

/* line 591, app/assets/stylesheets/home_page_components.scss */
.left-1\/2 {
  left: 50%;
}

/* line 592, app/assets/stylesheets/home_page_components.scss */
.z-10 {
  z-index: 10;
}

/* line 595, app/assets/stylesheets/home_page_components.scss */
.transform {
  transform: var(--tw-transform);
}

/* line 596, app/assets/stylesheets/home_page_components.scss */
.-translate-x-1\/2 {
  transform: translateX(-50%);
}

/* line 597, app/assets/stylesheets/home_page_components.scss */
.-translate-y-1\/2 {
  transform: translateY(-50%);
}

/* line 598, app/assets/stylesheets/home_page_components.scss */
.translate-x-4 {
  transform: translateX(1rem);
}

/* line 599, app/assets/stylesheets/home_page_components.scss */
.-translate-x-4 {
  transform: translateX(-1rem);
}

/* line 600, app/assets/stylesheets/home_page_components.scss */
.scale-105 {
  transform: scale(1.05);
}

/* line 603, app/assets/stylesheets/home_page_components.scss */
.rounded {
  border-radius: 0.25rem;
}

/* line 604, app/assets/stylesheets/home_page_components.scss */
.rounded-lg {
  border-radius: 0.5rem;
}

/* line 605, app/assets/stylesheets/home_page_components.scss */
.rounded-xl {
  border-radius: 0.75rem;
}

/* line 606, app/assets/stylesheets/home_page_components.scss */
.rounded-2xl {
  border-radius: 1rem;
}

/* line 607, app/assets/stylesheets/home_page_components.scss */
.rounded-3xl {
  border-radius: 1.5rem;
}

/* line 608, app/assets/stylesheets/home_page_components.scss */
.rounded-full {
  border-radius: 9999px;
}

/* line 609, app/assets/stylesheets/home_page_components.scss */
.border {
  border-width: 1px;
}

/* line 610, app/assets/stylesheets/home_page_components.scss */
.border-2 {
  border-width: 2px;
}

/* line 611, app/assets/stylesheets/home_page_components.scss */
.border-0 {
  border-width: 0;
}

/* line 612, app/assets/stylesheets/home_page_components.scss */
.border-t {
  border-top-width: 1px;
}

/* line 613, app/assets/stylesheets/home_page_components.scss */
.border-b {
  border-bottom-width: 1px;
}

/* line 614, app/assets/stylesheets/home_page_components.scss */
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

/* line 617, app/assets/stylesheets/home_page_components.scss */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* line 618, app/assets/stylesheets/home_page_components.scss */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* line 619, app/assets/stylesheets/home_page_components.scss */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* line 622, app/assets/stylesheets/home_page_components.scss */
.overflow-hidden {
  overflow: hidden;
}

/* line 623, app/assets/stylesheets/home_page_components.scss */
.line-through {
  text-decoration: line-through;
}

/* line 624, app/assets/stylesheets/home_page_components.scss */
.whitespace-nowrap {
  white-space: nowrap;
}

/* line 625, app/assets/stylesheets/home_page_components.scss */
.cursor-pointer {
  cursor: pointer;
}

/* line 626, app/assets/stylesheets/home_page_components.scss */
.transition-all {
  transition-property: all;
}

/* line 627, app/assets/stylesheets/home_page_components.scss */
.transition-transform {
  transition-property: transform;
}

/* line 628, app/assets/stylesheets/home_page_components.scss */
.transition-shadow {
  transition-property: box-shadow;
}

/* line 629, app/assets/stylesheets/home_page_components.scss */
.duration-200 {
  transition-duration: 200ms;
}

/* line 630, app/assets/stylesheets/home_page_components.scss */
.duration-300 {
  transition-duration: 300ms;
}

/* line 631, app/assets/stylesheets/home_page_components.scss */
.hover\:scale-105:hover {
  transform: scale(1.05);
}

/* line 632, app/assets/stylesheets/home_page_components.scss */
.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* line 635, app/assets/stylesheets/home_page_components.scss */
[class*="shadow-[var(--shadow-sage)]"] {
  box-shadow: 0 10px 30px -10px rgba(75, 155, 125, 0.3) !important;
}

/* line 636, app/assets/stylesheets/home_page_components.scss */
[class*="shadow-[var(--shadow-coral)]"] {
  box-shadow: 0 10px 30px -10px rgba(221, 136, 164, 0.3) !important;
}

/* line 637, app/assets/stylesheets/home_page_components.scss */
[class*="shadow-[var(--shadow-soft)]"] {
  box-shadow: 0 4px 20px -5px rgba(75, 155, 125, 0.15) !important;
}

/* line 640, app/assets/stylesheets/home_page_components.scss */
.aspect-square {
  aspect-ratio: 1 / 1;
}

/* line 643, app/assets/stylesheets/home_page_components.scss */
.object-cover {
  object-fit: cover;
}

/* line 646, app/assets/stylesheets/home_page_components.scss */
input[type="email"],
input[type="text"] {
  padding: 0.75rem 1rem;
  border: 1px solid #cfe2d9;
  border-radius: 0.75rem;
  background-color: #f6fbf4;
  color: #305044;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
}

/* line 657, app/assets/stylesheets/home_page_components.scss */
input[type="email"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: #4b9b7d;
}

/* line 663, app/assets/stylesheets/home_page_components.scss */
input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: #4b9b7d;
}

/* line 670, app/assets/stylesheets/home_page_components.scss */
.block {
  display: block;
}

/* line 671, app/assets/stylesheets/home_page_components.scss */
.inline-block {
  display: inline-block;
}

/* line 672, app/assets/stylesheets/home_page_components.scss */
.hidden {
  display: none;
}

/* line 675, app/assets/stylesheets/home_page_components.scss */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* line 678, app/assets/stylesheets/home_page_components.scss */
.italic {
  font-style: italic;
}

/* line 681, app/assets/stylesheets/home_page_components.scss */
.flex-1 {
  flex: 1 1 0%;
}

/* line 682, app/assets/stylesheets/home_page_components.scss */
.items-start {
  align-items: flex-start;
}

/* line 683, app/assets/stylesheets/home_page_components.scss */
.justify-between {
  justify-content: space-between;
}
