/* Temporary base styles — replace when real Tailwind/build pipeline is ready */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap");

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #111827;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

/* ----- Layout primitives (names mirror markup; safe fallbacks) ----- */
.hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-7xl {
  max-width: 80rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-\[18rem\] {
  max-width: 18rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-1 {
  flex: 1 1 0%;
}
.shrink-0 {
  flex-shrink: 0;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.h-full {
  height: 100%;
}

.grid {
  display: grid;
}

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

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.top-\[0px\] {
  top: 0;
}
.z-\[999\] {
  z-index: 999;
}

.min-w-0 {
  min-width: 0;
}
.w-full {
  width: 100%;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-16 {
  width: 4rem;
}
.w-20 {
  width: 5rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}

.ml-auto {
  margin-left: auto;
}
.mt-auto {
  margin-top: auto;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-2\.5 {
  margin-top: 0.625rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}

.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-14 {
  padding-right: 3.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-12 {
  padding-bottom: 3rem;
}

.border {
  border-width: 1px;
  border-style: solid;
}
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.border-\[2px\] {
  border-width: 2px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-2xl {
  border-radius: 1rem;
}

.border-gray-200 {
  border-color: #e5e7eb;
}
.border-gray-300 {
  border-color: #d1d5db;
}
.border-\[\#DADADA\] {
  border-color: #dadada;
}
.border-\[\#38BDF8\] {
  border-color: #38bdf8;
}

.bg-white {
  background-color: #fff;
}
.bg-\[\#F9FAFB\] {
  background-color: #f9fafb;
}
.bg-\[\#38BDF8\] {
  background-color: #38bdf8;
}
.bg-\[\#0A1A2F\] {
  background-color: #0a1a2f;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}

.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-\[28px\] {
  font-size: 28px;
  line-height: 1.2;
}

.font-\[300\] {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-\[800\],
.font-extrabold {
  font-weight: 800;
}

.leading-tight {
  line-height: 1.25;
}

.text-gray-300 {
  color: #d1d5db;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-800 {
  color: #1f2937;
}
.text-gray-900 {
  color: #111827;
}
.text-gray-50 {
  color: #f9fafb;
}
.text-red-500 {
  color: #ef4444;
}
.text-white {
  color: #fff;
}
.text-\[\#0A1A2F\] {
  color: #0a1a2f;
}
.text-\[\#38BDF8\] {
  color: #38bdf8;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
}
.focus\:ring-0:focus {
  box-shadow: none;
}

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

.pointer-events-none {
  pointer-events: none;
}
.rotate-12 {
  transform: rotate(12deg);
}

.right-4 {
  right: 1rem;
}
.top-1\/2 {
  top: 50%;
}
.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.underline {
  text-decoration: underline;
}

/* Sticky CTA bar gradient (matches hero CTA sky tones) */
.bg-gradient-to-b.from-\[\#E0F2FE\].to-\[\#BAE6FD\] {
  background-image: linear-gradient(to bottom, #e0f2fe, #bae6fd);
}

.font-poppins {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
}

/* e.g. testimonial stamp: hidden on small screens, visible from md */
@media (min-width: 768px) {
  .hidden.md\:block {
    display: block !important;
  }
}

/* Hover */
.hover\:bg-\[\#0EA5E9\]:hover {
  background-color: #0ea5e9;
}
.hover\:opacity-80:hover {
  opacity: 0.8;
}

/* ----- Zip CTA options (semantic classes from markup) ----- */
.zip-enter-options {
  margin-top: 1rem;
}

.zip-enter-options-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .zip-enter-options-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.zip-enter-card {
  text-align: center;
}

.zip-enter-link {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.zip-enter-link:hover {
  border-color: #38bdf8;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.2);
}

.zip-enter-image {
  display: block;
  width: 100%;
  height: auto;
}

.zip-enter-label {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a1a2f;
}

/* ----- Responsive (md: 768px) ----- */
@media (min-width: 768px) {
  .md\:hidden {
    display: none !important;
  }
  .md\:block {
    display: block !important;
  }
  .md\:flex {
    display: flex !important;
  }
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .md\:h-10 {
    height: 2.5rem !important;
  }
  .md\:h-12 {
    height: 3rem !important;
  }
  .md\:h-14 {
    height: 3.5rem !important;
  }
  .md\:w-48 {
    width: 12rem !important;
  }
  .md\:w-24 {
    width: 6rem !important;
  }
  .md\:w-\[35px\] {
    width: 35px !important;
  }
  .md\:h-\[34px\] {
    height: 34px !important;
  }
  .md\:max-w-lg {
    max-width: 32rem !important;
  }
  .md\:max-w-md {
    max-width: 28rem !important;
  }
  .md\:w-auto {
    width: auto !important;
  }
  .md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .md\:mt-4 {
    margin-top: 1rem !important;
  }
  .md\:mt-6 {
    margin-top: 1.5rem !important;
  }
  .md\:mt-8 {
    margin-top: 2rem !important;
  }
  .md\:mt-10 {
    margin-top: 2.5rem !important;
  }
  .md\:mt-16 {
    margin-top: 4rem !important;
  }
  .md\:p-6 {
    padding: 1.5rem !important;
  }
  .md\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .md\:pt-16 {
    padding-top: 4rem !important;
  }
  .md\:pb-28 {
    padding-bottom: 7rem !important;
  }
  .md\:py-28 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .md\:gap-6 {
    gap: 1.5rem !important;
  }
  .md\:gap-10 {
    gap: 2.5rem !important;
  }
  .md\:gap-12 {
    gap: 3rem !important;
  }
  .md\:text-left {
    text-align: left !important;
  }
  .md\:text-center {
    text-align: center !important;
  }
  .md\:items-start {
    align-items: flex-start !important;
  }
  .md\:justify-start {
    justify-content: flex-start !important;
  }
  .md\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
  .md\:text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
  }
  .md\:text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .md\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }
  .md\:text-5xl {
    font-size: 3rem !important;
    line-height: 1.1 !important;
  }
  .md\:text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
  }
  .md\:absolute {
    position: absolute !important;
  }
  .md\:-top-8 {
    top: -2rem !important;
  }
  .md\:right-\[-5rem\] {
    right: -5rem !important;
  }
  .md\:inline-block {
    display: inline-block !important;
  }
  .md\:border-\[3px\] {
    border-width: 3px !important;
  }
  .md\:\!leading-\[3\.6rem\] {
    line-height: 3.6rem !important;
  }
}

@media (min-width: 1024px) {
  .lg\:text-5xl {
    font-size: 3rem !important;
    line-height: 1.1 !important;
  }
}

/* Inputs: focus ring color */
input:focus {
  border-color: #38bdf8;
}

.placeholder\:text-sm::placeholder {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .md\:placeholder\:text-base::placeholder {
    font-size: 1rem !important;
  }
}
