/* Minimal landing page CSS — replaces Tailwind CDN (~300KB → ~6KB) */
/* Generated from templates/pages/index.twig class audit */

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

/* ── Base (from base.twig body classes) ── */
/* bg-gray-950 text-gray-100 min-h-screen */
body {
  margin: 0;
  background-color: #030712; /* gray-950 */
  color: #f3f4f6;            /* gray-100 */
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
nav { display: block; }

/* ── Layout helpers ── */
.relative   { position: relative; }
.absolute   { position: absolute; }
.sticky     { position: sticky; }
.top-0      { top: 0; }
.z-50       { z-index: 50; }
.overflow-hidden { overflow: hidden; }

.inset-0    { top: 0; right: 0; bottom: 0; left: 0; }
.-top-40    { top: -10rem; }
.-right-40  { right: -10rem; }
.-bottom-20 { bottom: -5rem; }
.-left-20   { left: -5rem; }
.-top-16    { top: -4rem; }
.-right-16  { right: -4rem; }
.-bottom-16 { bottom: -4rem; }
.-left-16   { left: -4rem; }

.top-8      { top: 2rem; }
.left-1\/3  { left: 33.333333%; }
.right-1\/3 { right: 33.333333%; }

/* ── Flexbox ── */
.flex           { display: flex; }
.inline-block   { display: inline-block; }
.items-center   { align-items: center; }
.justify-between{ justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col       { flex-direction: column; }
.gap-2          { gap: 0.5rem; }
.gap-3          { gap: 0.75rem; }
.gap-4          { gap: 1rem; }
.gap-6          { gap: 1.5rem; }
.gap-8          { gap: 2rem; }

/* ── Grid ── */
.grid           { display: grid; }
.grid-cols-1    { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* ── Display ── */
.hidden         { display: none; }
.block          { display: block; }

/* ── Sizing ── */
.w-5            { width: 1.25rem; }
.h-5            { height: 1.25rem; }
.w-7            { width: 1.75rem; }
.h-7            { height: 1.75rem; }
.w-16           { width: 4rem; }
.h-16           { height: 4rem; }
.w-72           { width: 18rem; }
.h-72           { height: 18rem; }
.w-96           { width: 24rem; }
.h-96           { height: 24rem; }
.w-56           { width: 14rem; }
.h-56           { height: 14rem; }
.w-full         { width: 100%; }
.h-px           { height: 1px; }
.max-w-2xl      { max-width: 42rem; }
.max-w-3xl      { max-width: 48rem; }
.max-w-4xl      { max-width: 56rem; }
.max-w-5xl      { max-width: 64rem; }
.max-w-6xl      { max-width: 72rem; }
.max-w-xl       { max-width: 36rem; }
.mx-auto        { margin-left: auto; margin-right: auto; }

/* ── Spacing — padding ── */
.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; }
.px-8           { padding-left: 2rem;     padding-right: 2rem; }
.px-10          { padding-left: 2.5rem;   padding-right: 2.5rem; }
.py-2           { padding-top: 0.5rem;    padding-bottom: 0.5rem; }
.py-4           { padding-top: 1rem;      padding-bottom: 1rem; }
.py-8           { padding-top: 2rem;      padding-bottom: 2rem; }
.py-16          { padding-top: 4rem;      padding-bottom: 4rem; }
.py-24          { padding-top: 6rem;      padding-bottom: 6rem; }
.py-28          { padding-top: 7rem;      padding-bottom: 7rem; }
/* py-3.5 */
.py-3\.5        { padding-top: 0.875rem;  padding-bottom: 0.875rem; }
.p-6            { padding: 1.5rem; }

/* ── Spacing — margin ── */
.mb-2           { margin-bottom: 0.5rem; }
.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; }
.mt-4           { margin-top: 1rem; }
.mt-5           { margin-top: 1.25rem; }

/* ── Typography ── */
.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; }
.text-5xl       { font-size: 3rem;      line-height: 1; }
.font-medium    { font-weight: 500; }
.font-semibold  { font-weight: 600; }
.font-bold      { font-weight: 700; }
.leading-tight  { line-height: 1.25; }
.leading-relaxed{ line-height: 1.625; }
.text-center    { text-align: center; }
.underline      { text-decoration-line: underline; }
.underline-offset-2 { text-underline-offset: 2px; }

/* ── Colors — text ── */
.text-white     { color: #ffffff; }
.text-gray-300  { color: #d1d5db; }
.text-gray-400  { color: #9ca3af; }
.text-gray-500  { color: #6b7280; }
.text-gray-600  { color: #4b5563; }
.text-blue-400  { color: #60a5fa; }

/* text-transparent for gradient text */
.text-transparent { color: transparent; }
.bg-clip-text     { -webkit-background-clip: text; background-clip: text; }

/* ── Colors — backgrounds ── */
.bg-gray-900    { background-color: #111827; }
.bg-blue-600    { background-color: #2563eb; }

/* bg-gray-950/80 (80% opacity) */
.bg-gray-950\/80 { background-color: rgba(3, 7, 18, 0.80); }

/* bg-gray-900/60 */
.bg-gray-900\/60 { background-color: rgba(17, 24, 39, 0.60); }

/* bg-blue-500/10 */
.bg-blue-500\/10 { background-color: rgba(59, 130, 246, 0.10); }

/* bg-blue-600/10 */
.bg-blue-600\/10 { background-color: rgba(37, 99, 235, 0.10); }

/* bg-blue-600/15 */
.bg-blue-600\/15 { background-color: rgba(37, 99, 235, 0.15); }

/* bg-blue-600/20 */
.bg-blue-600\/20 { background-color: rgba(37, 99, 235, 0.20); }

/* bg-blue-500/8 — note: Tailwind CDN accepts /8 = 8% */
.bg-blue-500\/8  { background-color: rgba(59, 130, 246, 0.08); }

/* ── Gradients ── */
/* bg-gradient-to-br from-blue-950/40 via-gray-950 to-gray-950 */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b  { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r  { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

/* Gradient stop helpers */
.from-blue-950\/40  { --tw-gradient-from: rgba(23, 37, 84, 0.40); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(23,37,84,0)); }
.from-gray-950      { --tw-gradient-from: #030712; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(3,7,18,0)); }
.from-blue-950\/60  { --tw-gradient-from: rgba(23, 37, 84, 0.60); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(23,37,84,0)); }
.from-blue-400      { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96,165,250,0)); }
.from-blue-500\/40  { --tw-gradient-from: rgba(59, 130, 246, 0.40); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59,130,246,0)); }
.via-gray-950       { --tw-gradient-stops: var(--tw-gradient-from), #030712, var(--tw-gradient-to, rgba(3,7,18,0)); }
.via-blue-500\/60   { --tw-gradient-stops: var(--tw-gradient-from), rgba(59,130,246,0.60), var(--tw-gradient-to, rgba(59,130,246,0)); }
.to-gray-950        { --tw-gradient-to: #030712; }
.to-gray-900\/50    { --tw-gradient-to: rgba(17, 24, 39, 0.50); }
.to-gray-900\/80    { --tw-gradient-to: rgba(17, 24, 39, 0.80); }
.to-blue-600        { --tw-gradient-to: #2563eb; }
.to-blue-500\/40    { --tw-gradient-to: rgba(59, 130, 246, 0.40); }

/* ── Borders ── */
.border       { border-width: 1px; border-style: solid; }
.border-t     { border-top-width: 1px; border-top-style: solid; }
.border-b     { border-bottom-width: 1px; border-bottom-style: solid; }

.border-gray-800\/60  { border-color: rgba(31, 41, 55, 0.60); }
.border-blue-500\/20  { border-color: rgba(59, 130, 246, 0.20); }
.border-blue-500\/30  { border-color: rgba(59, 130, 246, 0.30); }

/* ── Border radius ── */
.rounded-full  { border-radius: 9999px; }
.rounded-lg    { border-radius: 0.5rem; }
.rounded-xl    { border-radius: 0.75rem; }
.rounded-2xl   { border-radius: 1rem; }
.rounded-3xl   { border-radius: 1.5rem; }

/* ── Backdrop blur ── */
.backdrop-blur-sm { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

/* ── Blur (for decorative circles) ── */
.blur-3xl { filter: blur(64px); }

/* ── Pointer events ── */
.pointer-events-none { pointer-events: none; }

/* ── Transitions ── */
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-all    { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }

/* ── Opacity ── */
.opacity-70 { opacity: 0.70; }

/* ── Hover states ── */
.hover\:text-white:hover        { color: #ffffff; }
.hover\:text-gray-300:hover     { color: #d1d5db; }
.hover\:text-blue-400:hover     { color: #60a5fa; }
.hover\:bg-blue-500:hover       { background-color: #3b82f6; }
.hover\:bg-gray-900:hover       { background-color: #111827; }
.hover\:border-blue-500\/30:hover { border-color: rgba(59, 130, 246, 0.30); }
.hover\:shadow-lg:hover         { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover         { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
/* hover:shadow-blue-600/25 and hover:shadow-blue-600/30 — coloured shadows */
.hover\:shadow-blue-600\/25:hover { --tw-shadow-color: rgba(37, 99, 235, 0.25); box-shadow: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); }
.hover\:shadow-blue-600\/30:hover { --tw-shadow-color: rgba(37, 99, 235, 0.30); box-shadow: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); }
/* hover:-translate-y-0.5 */
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }

/* ── Responsive breakpoints ── */

/* sm: 640px */
@media (min-width: 640px) {
  .sm\:block          { display: block; }
  .sm\:text-4xl       { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-6xl       { font-size: 3.75rem; line-height: 1; }
  .sm\:flex-row       { flex-direction: row; }
  .sm\:w-auto         { width: auto; }
  .sm\:grid-cols-2    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row       { flex-direction: row; }
}

/* md: 768px */
@media (min-width: 768px) {
  .md\:block          { display: block; }
  .md\:grid-cols-3    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .lg\:grid-cols-3    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
