@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Inter+Tight:wght@400;500&display=swap');

@theme {
  --color-bg-primary: #F5F2EC;
  --color-bg-secondary: #EDE9DE;
  --color-ink-primary: #0F172A;
  --color-ink-muted: #64748B;
  --color-accent: #1D4ED8;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --radius-none: 0px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-hard: 4px 4px 0px #0F172A;
  --shadow-hard-accent: 4px 4px 0px #1D4ED8;
  --transition-base: 150ms ease;
}

/* ─── BASE RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-family: var(--font-body); background-color: #F5F2EC; color: #0F172A; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }
ul, ol { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F5F2EC; }
::-webkit-scrollbar-thumb { background: #1D4ED8; }

/* ─── FONT UTILITIES ─── */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: var(--font-mono); }
.font-sans { font-family: var(--font-body); }
.font-serif { font-family: var(--font-display); }

/* ─── LAYOUT: DISPLAY ─── */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-grid { display: inline-grid; }
.hidden { display: none; }
.contents { display: contents; }

/* ─── LAYOUT: FLEX ─── */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.self-center { align-self: center; }
.self-stretch { align-self: stretch; }

/* ─── LAYOUT: 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-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-full { grid-column: 1 / -1; }
.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }
.col-start-1 { grid-column-start: 1; }
.col-start-2 { grid-column-start: 2; }
.col-start-3 { grid-column-start: 3; }

/* ─── LAYOUT: POSITION ─── */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.-top-1 { top: -0.25rem; }
.-top-2 { top: -0.5rem; }
.-bottom-1 { bottom: -0.25rem; }

/* ─── LAYOUT: Z-INDEX ─── */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* ─── LAYOUT: OVERFLOW ─── */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* ─── SIZING: WIDTH ─── */
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-auto { width: auto; }
.w-0 { width: 0; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-px { width: 1px; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-fit { width: fit-content; }
.w-[calc(100%-1.5rem)] { width: calc(100% - 1.5rem); }

/* ─── SIZING: HEIGHT ─── */
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-auto { height: auto; }
.h-0 { height: 0; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-px { height: 1px; }
.h-[2px] { height: 2px; }
.h-[3px] { height: 3px; }

/* ─── SIZING: MIN/MAX ─── */
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.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-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.max-w-none { max-width: none; }
.max-w-prose { max-width: 65ch; }
.min-h-screen { min-height: 100vh; }
.min-h-full { min-height: 100%; }
.min-h-0 { min-height: 0; }

/* ─── SIZING: ASPECT RATIO ─── */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[3\/2\] { aspect-ratio: 3 / 2; }
.aspect-\[1\/1\] { aspect-ratio: 1 / 1; }

/* ─── SPACING: MARGIN ─── */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-0 { margin-bottom: 0; }
.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-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.-mt-1 { margin-top: -0.25rem; }
.-mt-2 { margin-top: -0.5rem; }
.-mt-px { margin-top: -1px; }

/* ─── SPACING: PADDING ─── */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.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; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-0 { padding-top: 0; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-0 { padding-bottom: 0; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-0 { padding-left: 0; }
.pl-2 { padding-left: 0.5rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pr-0 { padding-right: 0; }
.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }

/* ─── SPACING: GAP ─── */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }
.gap-y-12 { row-gap: 3rem; }

/* ─── TYPOGRAPHY: SIZE ─── */
.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; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[5rem\] { font-size: 5rem; }
.text-\[6rem\] { font-size: 6rem; }
.text-\[7rem\] { font-size: 7rem; }
.text-\[8rem\] { font-size: 8rem; }
.text-\[clamp\(2rem\,5vw\,4rem\)\] { font-size: clamp(2rem, 5vw, 4rem); }
.text-\[clamp\(2\.5rem\,6vw\,5rem\)\] { font-size: clamp(2.5rem, 6vw, 5rem); }
.text-\[clamp\(3rem\,8vw\,7rem\)\] { font-size: clamp(3rem, 8vw, 7rem); }
.text-\[clamp\(1rem\,2vw\,1\.25rem\)\] { font-size: clamp(1rem, 2vw, 1.25rem); }

/* ─── TYPOGRAPHY: WEIGHT ─── */
.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.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; }

/* ─── TYPOGRAPHY: STYLE ─── */
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }
.line-through { text-decoration-line: line-through; }
.decoration-1 { text-decoration-thickness: 1px; }
.underline-offset-4 { text-underline-offset: 4px; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* ─── TYPOGRAPHY: ALIGN ─── */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* ─── TYPOGRAPHY: LINE HEIGHT ─── */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-3 { line-height: 0.75rem; }
.leading-4 { line-height: 1rem; }
.leading-5 { line-height: 1.25rem; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-10 { line-height: 2.5rem; }

/* ─── TYPOGRAPHY: TRACKING ─── */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

/* ─── TYPOGRAPHY: WHITE SPACE / WRAP ─── */
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.whitespace-normal { white-space: normal; }
.break-words { overflow-wrap: break-word; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ─── COLORS: TEXT ─── */
.text-inherit { color: inherit; }
.text-current { color: currentColor; }
.text-transparent { color: transparent; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-\[\#F5F2EC\] { color: #F5F2EC; }
.text-\[\#EDE9DE\] { color: #EDE9DE; }
.text-\[\#0F172A\] { color: #0F172A; }
.text-\[\#1D4ED8\] { color: #1D4ED8; }
.text-\[\#64748B\] { color: #64748B; }
.text-\[\#1a3c34\] { color: #1a3c34; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }
.text-\[\#334155\] { color: #334155; }
.text-\[\#1E40AF\] { color: #1E40AF; }
.text-\[\#BFDBFE\] { color: #BFDBFE; }
.text-\[\#CBD5E1\] { color: #CBD5E1; }
.text-\[\#475569\] { color: #475569; }
.text-\[\#E2E8F0\] { color: #E2E8F0; }
.text-\[\#94A3B8\] { color: #94A3B8; }
.text-\[\#1C1917\] { color: #1C1917; }

/* ─── COLORS: BACKGROUND ─── */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-\[\#F5F2EC\] { background-color: #F5F2EC; }
.bg-\[\#EDE9DE\] { background-color: #EDE9DE; }
.bg-\[\#0F172A\] { background-color: #0F172A; }
.bg-\[\#1D4ED8\] { background-color: #1D4ED8; }
.bg-\[\#64748B\] { background-color: #64748B; }
.bg-\[\#1E293B\] { background-color: #1E293B; }
.bg-\[\#334155\] { background-color: #334155; }
.bg-\[\#E2E8F0\] { background-color: #E2E8F0; }
.bg-\[\#DBEAFE\] { background-color: #DBEAFE; }
.bg-\[\#EFF6FF\] { background-color: #EFF6FF; }
.bg-\[\#F8F7F3\] { background-color: #F8F7F3; }
.bg-\[\#F1EFE8\] { background-color: #F1EFE8; }
.bg-\[\#1D4ED8\]\/10 { background-color: rgba(29, 78, 216, 0.1); }
.bg-\[\#1D4ED8\]\/20 { background-color: rgba(29, 78, 216, 0.2); }
.bg-\[\#0F172A\]\/5 { background-color: rgba(15, 23, 42, 0.05); }
.bg-\[\#0F172A\]\/10 { background-color: rgba(15, 23, 42, 0.1); }
.bg-\[\#F5F2EC\]\/90 { background-color: rgba(245, 242, 236, 0.9); }

/* ─── COLORS: BORDER ─── */
.border-transparent { border-color: transparent; }
.border-white { border-color: #ffffff; }
.border-black { border-color: #000000; }
.border-\[\#0F172A\] { border-color: #0F172A; }
.border-\[\#1D4ED8\] { border-color: #1D4ED8; }
.border-\[\#64748B\] { border-color: #64748B; }
.border-\[\#E2E8F0\] { border-color: #E2E8F0; }
.border-\[\#EDE9DE\] { border-color: #EDE9DE; }
.border-\[\#CBD5E1\] { border-color: #CBD5E1; }
.border-\[\#0F172A\]\/10 { border-color: rgba(15, 23, 42, 0.1); }
.border-\[\#0F172A\]\/20 { border-color: rgba(15, 23, 42, 0.2); }
.border-\[\#0F172A\]\/30 { border-color: rgba(15, 23, 42, 0.3); }
.border-\[\#64748B\]\/20 { border-color: rgba(100, 116, 139, 0.2); }
.border-\[\#64748B\]\/30 { border-color: rgba(100, 116, 139, 0.3); }
.border-\[\#1D4ED8\]\/30 { border-color: rgba(29, 78, 216, 0.3); }
.border-\[rgba\(255\,255\,255\,0\.180\)\] { border-color: rgba(255, 255, 255, 0.18); }

/* ─── BORDERS ─── */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-t-0 { border-top-width: 0; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-b-4 { border-bottom-width: 4px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-r-2 { border-right-width: 2px; border-right-style: solid; }
.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }
.border-dotted { border-style: dotted; }

/* ─── BORDERS: RADIUS ─── */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; }
.rounded-b { border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }

/* ─── EFFECTS: SHADOW ─── */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-\[4px_4px_0px_\#0F172A\] { box-shadow: 4px 4px 0px #0F172A; }
.shadow-\[4px_4px_0px_\#1D4ED8\] { box-shadow: 4px 4px 0px #1D4ED8; }
.shadow-\[2px_2px_0px_\#1D4ED8\] { box-shadow: 2px 2px 0px #1D4ED8; }
.shadow-\[6px_6px_0px_\#0F172A\] { box-shadow: 6px 6px 0px #0F172A; }
.shadow-\[0_20px_60px_rgba\(15\,23\,42\,0\.24\)\] { box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24); }

/* ─── EFFECTS: OPACITY ─── */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* ─── EFFECTS: BACKDROP ─── */
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* ─── EFFECTS: BACKGROUND SIZE/POSITION ─── */
.bg-cover { background-size: cover; }
.bg-contain { background-size: contain; }
.bg-center { background-position: center; }
.bg-top { background-position: top; }
.bg-bottom { background-position: bottom; }
.bg-no-repeat { background-repeat: no-repeat; }

/* ─── TRANSFORMS ─── */
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-\[90deg\] { transform: rotate(90deg); }
.-rotate-\[90deg\] { transform: rotate(-90deg); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-95 { transform: scale(0.95); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-2 { transform: translateY(0.5rem); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.translate-x-0 { transform: translateX(0); }
.translate-x-full { transform: translateX(100%); }

/* ─── TRANSITIONS ─── */
.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(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; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ─── CURSOR ─── */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* ─── POINTER EVENTS ─── */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ─── OBJECT FIT ─── */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ─── CONTAINER ─── */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

/* ─── RESPONSIVE: sm (640px) ─── */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:flex-row { flex-direction: row; }
}

/* ─── RESPONSIVE: md (768px) ─── */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:inline-block { display: inline-block; }
  .md\:hidden { display: none; }
  .md\:grid { display: grid; }
  .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)); }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pt-0 { padding-top: 0; }
  .md\:pt-12 { padding-top: 3rem; }
  .md\:pb-0 { padding-bottom: 0; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-12 { margin-top: 3rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:max-w-lg { max-width: 32rem; }
  .md\:max-w-xl { max-width: 36rem; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-3xl { max-width: 48rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:justify-center { justify-content: center; }
}

/* ─── RESPONSIVE: lg (1024px) ─── */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:max-w-2xl { max-width: 42rem; }
  .lg\:max-w-4xl { max-width: 56rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:mt-0 { margin-top: 0; }
}

/* ─── RESPONSIVE: xl (1280px) ─── */
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .xl\:text-8xl { font-size: 6rem; line-height: 1; }
  .xl\:text-9xl { font-size: 8rem; line-height: 1; }
  .xl\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .xl\:gap-16 { gap: 4rem; }
}

/* ─── HOVER STATES ─── */
.hover\:text-\[\#1D4ED8\]:hover { color: #1D4ED8; }
.hover\:text-\[\#1E40AF\]:hover { color: #1E40AF; }
.hover\:text-\[\#0F172A\]:hover { color: #0F172A; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-\[\#1D4ED8\]:hover { background-color: #1D4ED8; }
.hover\:bg-\[\#1E40AF\]:hover { background-color: #1E40AF; }
.hover\:bg-\[\#0F172A\]:hover { background-color: #0F172A; }
.hover\:bg-\[\#EDE9DE\]:hover { background-color: #EDE9DE; }
.hover\:bg-\[\#EFF6FF\]:hover { background-color: #EFF6FF; }
.hover\:border-\[\#1D4ED8\]:hover { border-color: #1D4ED8; }
.hover\:border-\[\#0F172A\]:hover { border-color: #0F172A; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:shadow-\[4px_4px_0px_\#1D4ED8\]:hover { box-shadow: 4px 4px 0px #1D4ED8; }
.hover\:shadow-\[6px_6px_0px_\#0F172A\]:hover { box-shadow: 6px 6px 0px #0F172A; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:translate-y-\[-2px\]:hover { transform: translateY(-2px); }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:no-underline:hover { text-decoration-line: none; }
.hover\:tracking-wider:hover { letter-spacing: 0.05em; }

/* ─── FOCUS STATES ─── */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px #1D4ED8; }
.focus\:border-\[\#1D4ED8\]:focus { border-color: #1D4ED8; }
.focus\:bg-white:focus { background-color: #ffffff; }

/* ─── GROUP HOVER ─── */
.group:hover .group-hover\:text-\[\#1D4ED8\] { color: #1D4ED8; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:border-\[\#1D4ED8\] { border-color: #1D4ED8; }
.group:hover .group-hover\:shadow-\[4px_4px_0px_\#1D4ED8\] { box-shadow: 4px 4px 0px #1D4ED8; }

/* ─── TECHNO CYBERPUNK DECORATIVE UTILITIES ─── */

/* Marquee scrolling strip */
.marquee-wrapper { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee-scroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Terminal label style */
.terminal-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.terminal-label::before { content: '['; color: #1D4ED8; }
.terminal-label::after { content: ']'; color: #1D4ED8; }

/* Hard offset shadow block */
.block-hard { border: 1px solid #0F172A; position: relative; transition: box-shadow 150ms ease, transform 150ms ease; }
.block-hard:hover { box-shadow: 4px 4px 0px #0F172A; transform: translate(-2px, -2px); }

/* Number marker display */
.section-number {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: #1D4ED8;
  text-transform: uppercase;
}

/* ASCII divider */
.ascii-divider { font-family: var(--font-mono); color: #64748B; font-size: 0.75rem; letter-spacing: 0.1em; }

/* Caption overlay */
.img-caption {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(100, 116, 139, 0.8);
}

/* Chip / badge */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(15, 23, 42, 0.2);
  color: #64748B;
  background-color: rgba(245, 242, 236, 0.8);
}
.chip-accent {
  border-color: #1D4ED8;
  color: #1D4ED8;
  background-color: rgba(29, 78, 216, 0.08);
}

/* Grid overlay decorative lines */
.grid-overlay {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* FAQ accordion */
.accordion-content { overflow: hidden; max-height: 0; transition: max-height 350ms ease; }
.accordion-content.open { max-height: 500px; }
.accordion-chevron { transition: transform 300ms ease; }
.accordion-chevron.open { transform: rotate(180deg); }

/* Step connector line */
.step-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, #1D4ED8, transparent);
  transform: translateX(-50%);
}

/* Vertical text label */
.text-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* Gutter indicator accent line */
.accent-bar-left { border-left: 3px solid #1D4ED8; }
.accent-bar-top { border-top: 3px solid #1D4ED8; }

/* Form inputs */
.form-input {
  width: 100%;
  background-color: #F5F2EC;
  border: 1px solid rgba(100, 116, 139, 0.3);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #0F172A;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 150ms ease;
  border-radius: 0;
}
.form-input:focus { border-color: #1D4ED8; }
.form-input::placeholder { color: #94A3B8; }

/* Stats large number */
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #0F172A;
  line-height: 1;
}

/* Underline accent hover */
.link-underline {
  text-decoration: none;
  background-image: linear-gradient(#1D4ED8, #1D4ED8);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  transition: background-size 200ms ease;
}
.link-underline:hover { background-size: 100% 1px; }

/* Not-italic for address tag */
.not-italic { font-style: normal; }

/* Space utilities */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* Print utilities */
@media print {
  .print\:hidden { display: none; }
}

/* AOS fallback */
[data-aos] { transition-property: opacity, transform; }

/* Swiper custom */
.swiper-pagination-bullet { background: #64748B; opacity: 0.5; }
.swiper-pagination-bullet-active { background: #1D4ED8; opacity: 1; }

/* Mobile-specific padding for cookie banner */
.bottom-4 { bottom: 1rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.left-1\/2 { left: 50%; }

/* Dividers */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; border-color: rgba(100, 116, 139, 0.2); }
.divide-\[\#0F172A\]\/10 > * + * { border-top-width: 1px; border-top-style: solid; border-color: rgba(15, 23, 42, 0.1); }

/* Selection color */
::selection { background-color: rgba(29, 78, 216, 0.2); color: #0F172A; }
