/* Offline static utility layer used by index.html and links/index.html. */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
}

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

img,
svg {
  display: block;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-sans {
  font-family: Inter, sans-serif;
}

.font-heading {
  font-family: Poppins, sans-serif;
}

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.-top-32 { top: -8rem; }
.-right-32 { right: -8rem; }
.-bottom-32 { bottom: -8rem; }
.-left-32 { left: -8rem; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.w-full { width: 100%; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-96 { width: 24rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }
.max-w-md { max-width: 28rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-blue-500\/20 { border-color: rgba(59, 130, 246, 0.2); }
.border-gray-800\/30 { border-color: rgba(31, 41, 55, 0.3); }
.border-gray-800\/50 { border-color: rgba(31, 41, 55, 0.5); }

.bg-blue-500\/5 { background-color: rgba(59, 130, 246, 0.05); }
.bg-purple-500\/5 { background-color: rgba(168, 85, 247, 0.05); }
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to));
}
.from-blue-500\/10 {
  --tw-gradient-from: rgba(59, 130, 246, 0.1);
  --tw-gradient-to: rgba(59, 130, 246, 0);
}
.to-purple-500\/10 { --tw-gradient-to: rgba(168, 85, 247, 0.1); }
.from-blue-600 {
  --tw-gradient-from: rgb(37, 99, 235);
  --tw-gradient-to: rgba(37, 99, 235, 0);
}
.to-purple-600 { --tw-gradient-to: rgb(147, 51, 234); }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.mr-2 { margin-right: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-10 { margin-bottom: 2.5rem; }

.gap-5 { gap: 1.25rem; }
.gap-10 { gap: 2.5rem; }

.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.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-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.text-white { color: #ffffff; }
.text-blue-400 { color: #60a5fa; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }

/* Lightweight icon fallbacks replacing Font Awesome payload. */
i.fas,
i.fab {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35em;
  font-size: 0.62em;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.fa-linkedin::before { content: "in"; }
.fa-briefcase::before { content: "PM"; }
.fa-users::before { content: "U"; }
.fa-link::before { content: "L"; }
.fa-robot::before { content: "AI"; }
.fa-shield-alt::before { content: "CS"; }
.fa-users-cog::before { content: "PL"; }
.fa-lightbulb::before { content: "IN"; }
.fa-envelope::before { content: "@"; }
.fa-home::before { content: "H"; }
.fa-book::before { content: "B"; }
.fa-book-open::before { content: "BO"; }
.fa-baby::before { content: "BF"; }
.fa-chart-line::before { content: "BM"; }
.fa-x-twitter::before { content: "X"; }
.fa-instagram::before { content: "IG"; }
.fa-film::before { content: "A2"; }
.fa-camera::before { content: "5P"; }
.fa-flickr::before { content: "FL"; }
.fa-camera-retro::before { content: "MM"; }

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -4px rgba(0, 0, 0, 0.15);
}

.blur-lg { filter: blur(16px); }
.blur-3xl { filter: blur(64px); }

.transition-all {
  transition-property: all;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}
.transition-transform {
  transition-property: transform;
}
.duration-300 {
  transition-duration: 300ms;
}

.hover\:bg-gray-800\/30:hover { background-color: rgba(31, 41, 55, 0.3); }
.hover\:border-blue-500\/40:hover { border-color: rgba(59, 130, 246, 0.4); }
.hover\:border-blue-500\/50:hover { border-color: rgba(59, 130, 246, 0.5); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
}
.hover\:shadow-blue-500\/50:hover {
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.5);
}

.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-white { color: #ffffff; }

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  --ring-shadow: 0 0 0 2px var(--ring-color, rgba(59, 130, 246, 0.5));
  box-shadow: var(--ring-offset-shadow, 0 0 #0000), var(--ring-shadow), var(--shadow, 0 0 #0000);
}
.focus\:ring-blue-500:focus { --ring-color: rgb(59, 130, 246); }
.focus\:ring-offset-2:focus {
  --ring-offset-width: 2px;
  --ring-offset-shadow: 0 0 0 var(--ring-offset-width) var(--ring-offset-color, #ffffff);
}
.focus\:ring-offset-gray-900:focus { --ring-offset-color: rgb(17, 24, 39); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:items-start { align-items: flex-start; }
  .md\:p-12 { padding: 3rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:w-48 { width: 12rem; }
  .md\:h-48 { height: 12rem; }
}
