/* aerialaspectmedia.com — hand-written subset of Tailwind utilities.
   Replaces the Tailwind Play CDN. Class names are kept identical to
   Tailwind so markup needs no changes. Add a rule here before using a
   new utility class in HTML. */

/* --- brand --- */
:root {
  --aam-blue:      #3B6BFF;
  --aam-blue-deep: #2350E8;
  --aam-bg:        #07090F;
  --slate-100: #f1f5f9; --slate-200: #e2e8f0; --slate-300: #cbd5e1;
  --slate-400: #94a3b8; --slate-500: #64748b; --slate-700: #334155;
  --slate-900: #0f172a;
}

/* --- preflight (the parts of Tailwind's reset these pages rely on) --- */
*, ::before, ::after { box-sizing: border-box; border: 0 solid currentColor; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; }
body { margin: 0; line-height: inherit; background-color: var(--aam-bg); }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
img { display: block; max-width: 100%; height: auto; vertical-align: middle; }

/* --- brand components --- */
.aam-blue-bg { background-color: var(--aam-blue); }
.aam-blue-bg:hover { background-color: var(--aam-blue-deep); }
.logo-glow { background: radial-gradient(circle, rgba(59,107,255,0.18) 0%, transparent 65%); }

/* --- layout --- */
.flex { display: flex; } .inline-flex { display: inline-flex; }
.inline-block { display: inline-block; } .hidden { display: none; }
.flex-1 { flex: 1 1 0%; } .flex-col { flex-direction: column; }
.items-center { align-items: center; } .justify-center { justify-content: center; }
.gap-2 { gap: .5rem; } .gap-4 { gap: 1rem; }
.relative { position: relative; } .absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; } .w-96 { width: 24rem; }
.max-w-full { max-width: 100%; } .max-w-lg { max-width: 32rem; } .max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; } .mx-3 { margin-left: .75rem; margin-right: .75rem; }
.mb-1 { margin-bottom: .25rem; } .mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mt-3 { margin-top: .75rem; } .mb-10 { margin-bottom: 2.5rem; } .mb-12 { margin-bottom: 3rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } .px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; } .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.space-y-6 > * + * { margin-top: 1.5rem; } .space-y-8 > * + * { margin-top: 2rem; }

/* --- typography --- */
.text-center { text-align: center; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.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; }
.font-light { font-weight: 300; } .font-medium { font-weight: 500; } .font-semibold { font-weight: 600; }
.leading-relaxed { line-height: 1.625; }
.underline { text-decoration-line: underline; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.text-white { color: #fff; }
.text-slate-100 { color: var(--slate-100); } .text-slate-200 { color: var(--slate-200); }
.text-slate-400 { color: var(--slate-400); } .text-slate-500 { color: var(--slate-500); }
.text-slate-700 { color: var(--slate-700); }
.hover\:text-white:hover { color: #fff; }
.hover\:text-slate-300:hover { color: var(--slate-300); }

/* --- borders / effects --- */
.border { border-width: 1px; } .border-t { border-top-width: 1px; }
.border-slate-700 { border-color: var(--slate-700); } .border-slate-900 { border-color: var(--slate-900); }
.hover\:border-slate-500:hover { border-color: var(--slate-500); }
.rounded-lg { border-radius: .5rem; }
.blur-3xl { filter: blur(64px); }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1); transition-duration: 150ms; }

/* --- sm: breakpoint (≥640px) --- */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:w-\[32rem\] { width: 32rem; }
}
