@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --primary-300: #93c5fd;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--secondary-200);
}

html {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1, h2, h3, p, ul, ol, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.site-wrap {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .site-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.btn-primary {
  background: var(--primary-600);
  color: #fff;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.08);
}

.btn-primary:hover {
  background: var(--primary-700);
}

.btn-secondary {
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.05);
  color: #fff;
}

.btn-secondary:hover {
  background: rgb(255 255 255 / 0.1);
}

.btn-outline {
  border: 1px solid var(--secondary-300);
  background: #fff;
  color: var(--secondary-800);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--secondary-900);
}

.section-lead {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary-600);
}

.form-field {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--secondary-300);
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  color: var(--secondary-900);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.form-field:focus {
  outline: 2px solid transparent;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.2);
}

.brand-wordmark {
  color: #061433;
}

.brand-tld {
  color: #1C7AED;
}

.brand-mark-light {
  display: none;
}

#site-header.is-home {
  background: transparent;
  box-shadow: none;
}

#site-header.is-home .brand-wordmark,
#site-header.is-home .header-nav,
#site-header.is-home #menu-toggle {
  color: #fff;
}

#site-header.is-home .brand-tld {
  color: #60a5fa;
}

#site-header.is-home .brand-mark-color {
  visibility: hidden;
}

#site-header.is-home .brand-mark-light {
  display: block;
}

#site-header.is-home #menu-toggle {
  border-color: rgb(255 255 255 / 0.2);
}

#site-header.is-scrolled {
  background: rgb(255 255 255 / 0.95);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.06);
  backdrop-filter: blur(10px);
}

#site-header.is-scrolled .brand-wordmark {
  color: #061433;
}

#site-header.is-scrolled .brand-tld {
  color: #1C7AED;
}

#site-header.is-scrolled .brand-mark-color {
  visibility: visible;
}

#site-header.is-scrolled .brand-mark-light {
  display: none;
}

#site-header.is-scrolled .header-nav {
  color: var(--secondary-600);
}

#site-header.is-scrolled #menu-toggle {
  border-color: var(--secondary-200);
  color: var(--secondary-800);
}

.object-contain { object-fit: contain; }
.w-auto { width: auto; }
.inline-block { display: inline-block; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-10 { top: 2.5rem; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.-left-24 { left: -6rem; }
.z-50 { z-index: 50; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.gap-2\.5 { gap: 0.625rem; }
.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; }
.gap-14 { gap: 3.5rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.list-none { list-style: none; }
.w-5 { width: 1.25rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-full { width: 100%; }
.h-5 { height: 1.25rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-40 { height: 10rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.max-w-xs { max-width: 20rem; }
.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-none { max-width: none; }
.shrink-0 { flex-shrink: 0; }
.scroll-mt-24 { scroll-margin-top: 6rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[10px\] { border-radius: 10px; }
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-secondary-100 { border-color: var(--secondary-100); }
.border-secondary-200 { border-color: var(--secondary-200); }
.border-white\/10 { border-color: rgb(255 255 255 / 0.1); }
.border-white\/20 { border-color: rgb(255 255 255 / 0.2); }
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; }
.divide-secondary-200 > :not([hidden]) ~ :not([hidden]) { border-color: var(--secondary-200); }
.bg-white { background-color: #fff; }
.bg-white\/5 { background-color: rgb(255 255 255 / 0.05); }
.bg-secondary-50 { background-color: var(--secondary-50); }
.bg-secondary-800\/80 { background-color: rgb(30 41 59 / 0.8); }
.bg-secondary-900 { background-color: var(--secondary-900); }
.bg-secondary-900\/95 { background-color: rgb(15 23 42 / 0.95); }
.bg-primary-600\/30 { background-color: rgb(37 99 235 / 0.3); }
.bg-sky-500\/10 { background-color: rgb(14 165 233 / 0.1); }
.bg-sky-600 { background-color: #0284c7; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-emerald-400\/15 { background-color: rgb(52 211 153 / 0.15); }
.bg-emerald-500 { background-color: #10b981; }
.bg-amber-400 { background-color: #fbbf24; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-28 { padding-top: 7rem; }
.pb-20 { padding-bottom: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-5 { margin-bottom: 1.25rem; }
.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-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.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; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[0\.16em\] { letter-spacing: 0.16em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.leading-relaxed { line-height: 1.7; }
.text-white { color: #fff; }
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-white\/5 { color: rgb(255 255 255 / 0.05); }
.text-primary-300 { color: var(--primary-300); }
.text-primary-600 { color: var(--primary-600); }
.text-secondary-400 { color: var(--secondary-400); }
.text-secondary-500 { color: var(--secondary-500); }
.text-secondary-600 { color: var(--secondary-600); }
.text-secondary-800 { color: var(--secondary-800); }
.text-secondary-800\/80 { color: rgb(30 41 59 / 0.8); }
.text-secondary-900 { color: var(--secondary-900); }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-emerald-300 { color: #6ee7b7; }
.text-emerald-800 { color: #065f46; }
.text-rose-600 { color: #e11d48; }
.antialiased { -webkit-font-smoothing: antialiased; }
.underline { text-decoration: underline; }
.decoration-white\/30 { text-decoration-color: rgb(255 255 255 / 0.3); }
.underline-offset-4 { text-underline-offset: 4px; }
.opacity-40 { opacity: 0.4; }
.shadow-sm { box-shadow: 0 1px 2px rgb(15 23 42 / 0.06); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.12); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(15 23 42 / 0.35); }
.ring-1 { box-shadow: 0 0 0 1px var(--tw-ring, rgb(15 23 42 / 0.1)); }
.ring-black\/10 { --tw-ring: rgb(0 0 0 / 0.1); box-shadow: 0 0 0 1px rgb(0 0 0 / 0.1); }
.ring-secondary-200 { box-shadow: 0 0 0 1px var(--secondary-200); }
.backdrop-blur-sm { backdrop-filter: blur(8px); }
.blur-3xl { filter: blur(64px); }
.transition { transition: color .15s ease, background-color .15s ease, transform .15s ease; }
.transition-colors { transition: color .3s ease, background-color .3s ease, border-color .3s ease; }
.duration-300 { transition-duration: 300ms; }
.scroll-smooth { scroll-behavior: smooth; }
.group-open\:rotate-45 {}
.group[open] .group-open\:rotate-45 { transform: rotate(45deg); }

.hover\:text-primary-500:hover { color: var(--primary-500); }
.hover\:text-primary-600:hover { color: var(--primary-600); }
.hover\:decoration-white:hover { text-decoration-color: #fff; }

.prose p { margin-bottom: 1rem; }
.prose a { color: var(--primary-600); text-decoration: underline; }
.prose strong { color: var(--secondary-900); }

.\!px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.\!py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:p-8 { padding: 2rem; }
  .sm\:pt-32 { padding-top: 8rem; }
  .sm\:pb-24 { padding-bottom: 6rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.1; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-\[3\.25rem\] { font-size: 3.25rem; }
  .lg\:leading-\[1\.1\] { line-height: 1.1; }
}
