/* about-tw.min.css — Tailwind replacement for about.html */
/* Generated from actual class usage — replaces cdn.tailwindcss.com */

*,::before,::after{box-sizing:border-box}
.scroll-smooth{scroll-behavior:smooth}
.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

/* Layout */
.relative{position:relative}
.absolute{position:absolute}
.fixed{position:fixed}
.z-0{z-index:0}.z-10{z-index:10}

/* Display & Flex */
.flex{display:flex}
.grid{display:grid}
.inline-block{display:inline-block}
.hidden{display:none}
.flex-wrap{flex-wrap:wrap}
.flex-1{flex:1 1 0%}
.flex-none{flex:none}
.items-center{align-items:center}
.items-start{align-items:start}
.justify-center{justify-content:center}
.text-center{text-align:center}
.text-left{text-align:left}
/* Grid */
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}

/* Gaps */
.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}

/* Spacing */
.px-4{padding-left:1rem;padding-right:1rem}
.px-5{padding-left:1.25rem;padding-right:1.25rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.py-3{padding-top:.75rem;padding-bottom:.75rem}
.py-6{padding-top:1.5rem;padding-bottom:1.5rem}
.py-12{padding-top:3rem;padding-bottom:3rem}
.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}
.pt-16{padding-top:4rem}
.pb-10{padding-bottom:2.5rem}
.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}
.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}
.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}
.mb-8{margin-bottom:2rem}.mb-10{margin-bottom:2.5rem}.mb-16{margin-bottom:4rem}
.ml-1{margin-left:.25rem}

/* Width & Height */
.w-full{width:100%}
.h-full{height:100%}
.min-w-0{min-width:0}
.max-w-3xl{max-width:48rem}
.max-w-5xl{max-width:64rem}
.max-w-6xl{max-width:72rem}
.max-w-7xl{max-width:80rem}
.mx-auto{margin-left:auto;margin-right:auto}
/* Typography */
.text-xs{font-size:.75rem;line-height:1rem}
.text-sm{font-size:.875rem;line-height:1.25rem}
.text-xl{font-size:1.25rem;line-height:1.75rem}
.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}
.font-extrabold{font-weight:800}
.font-black{font-weight:900}
.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* Colors */
.text-white{color:#fff}
.text-gray-200{color:#e5e7eb}
.text-gray-300{color:#d1d5db}
.text-gray-400{color:#9ca3af}
.text-gray-500{color:#6b7280}
.text-green-400{color:#4ade80}
.text-red-400{color:#f87171}
.bg-red-600{background-color:#dc2626}
.bg-red-700{background-color:#b91c1c}
.bg-black\/30{background-color:rgba(0,0,0,.3)}
.bg-red-900\/10{background-color:rgba(127,29,29,.1)}
.bg-gray-600\/50{background-color:rgba(75,85,99,.5)}

/* Borders */
.border{border-width:1px}
.border-y{border-top-width:1px;border-bottom-width:1px}
.border-gray-800{border-color:#1f2937}
.border-red-400\/50{border-color:rgba(248,113,113,.5)}
.rounded-lg{border-radius:.5rem}
.rounded-xl{border-radius:.75rem}
.rounded-2xl{border-radius:1rem}

/* Effects */
.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:150ms}
.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:150ms}
.hover\:bg-red-700:hover{background-color:#b91c1c}
.hover\:bg-gray-600\/80:hover{background-color:rgba(75,85,99,.8)}
.hover\:border-gray-600\/50:hover{border-color:rgba(75,85,99,.5)}
.hover\:underline:hover{text-decoration-line:underline}
.hover\:scale-105:hover{transform:scale(1.05)}
.cursor-not-allowed{cursor:not-allowed}
.overflow-hidden{overflow:hidden}
.space-y-1>:not([hidden])~:not([hidden]){margin-top:.25rem}
.space-y-3>:not([hidden])~:not([hidden]){margin-top:.75rem}
.space-y-4>:not([hidden])~:not([hidden]){margin-top:1rem}
/* Responsive */
@media(min-width:640px){
  .sm\:text-sm{font-size:.875rem;line-height:1.25rem}
  .sm\:text-xs{font-size:.75rem;line-height:1rem}
  .sm\:text-5xl{font-size:3rem;line-height:1}
  .sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}
  .sm\:p-6{padding:1.5rem}
  .sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}
  .sm\:py-3{padding-top:.75rem;padding-bottom:.75rem}
  .sm\:flex{display:flex}
  .sm\:items-center{align-items:center}
  .sm\:gap-4{gap:1rem}
  .sm\:space-y-0>:not([hidden])~:not([hidden]){margin-top:0}
  .sm\:w-64{width:16rem}
  .sm\:flex-none{flex:none}
}
@media(min-width:768px){
  .md\:flex{display:flex}
  .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\:justify-end{justify-content:flex-end}
  .md\:w-1\/2{width:50%}
  .md\:pl-12{padding-left:3rem}
  .md\:pr-12{padding-right:3rem}
  .md\:ml-auto{margin-left:auto}
}
@media(min-width:1024px){
  .lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}
  .lg\:col-span-2{grid-column:span 2/span 2}
  .lg\:col-span-3{grid-column:span 3/span 3}
}

/* Arbitrary values */
.\[10px\]{font-size:10px}
.h-\[30px\]{height:30px}
.text-\[10px\]{font-size:10px}
.text-cyan-400{color:#21e6c1}
@media(min-width:640px){.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
.gap-5{gap:1.25rem}