@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700,900&f[]=satoshi@400,500&display=swap');

@theme {
  --color-bg-primary: #FAFBFD;
  --color-bg-secondary: #F2F4F8;
  --color-ink-primary: #1C1A2E;
  --color-ink-muted: #6B6880;
  --color-accent: #7B5EA7;
  --font-display: 'Clash Display', serif;
  --font-body: 'Satoshi', sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-offset: 4px 4px 0px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Satoshi', system-ui, sans-serif;
  background-color: #FAFBFD;
  color: #1C1A2E;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ─────────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.grid { display: 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-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-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.col-span-12 { grid-column: span 12 / span 12; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[21\/9\] { aspect-ratio: 21/9; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[1\/1\] { aspect-ratio: 1/1; }
.aspect-square { aspect-ratio: 1/1; }

/* ─── Spacing ─────────────────────────────────────────────── */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.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-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-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-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.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; }
.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-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-4 { padding-right: 1rem; }
.m-0 { margin: 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-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-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.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; }
.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; }
.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; }

/* ─── Typography ─────────────────────────────────────────── */
.font-display { font-family: 'Clash Display', serif; }
.font-body { font-family: 'Satoshi', sans-serif; }
.font-mono { font-family: 'Satoshi', monospace; }
.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.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; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.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; }
.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; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.decoration-1 { text-decoration-width: 1px; }
.underline-offset-4 { text-underline-offset: 4px; }
.line-through { text-decoration: line-through; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { word-break: break-word; }

/* ─── Colors ─────────────────────────────────────────────── */
.bg-\[\#FAFBFD\] { background-color: #FAFBFD; }
.bg-\[\#F2F4F8\] { background-color: #F2F4F8; }
.bg-\[\#1C1A2E\] { background-color: #1C1A2E; }
.bg-\[\#7B5EA7\] { background-color: #7B5EA7; }
.bg-\[\#6B6880\] { background-color: #6B6880; }
.bg-\[\#EDE8F5\] { background-color: #EDE8F5; }
.bg-\[\#E8EAF0\] { background-color: #E8EAF0; }
.bg-\[\#2D2B40\] { background-color: #2D2B40; }
.bg-white { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }
.text-\[\#FAFBFD\] { color: #FAFBFD; }
.text-\[\#F2F4F8\] { color: #F2F4F8; }
.text-\[\#1C1A2E\] { color: #1C1A2E; }
.text-\[\#7B5EA7\] { color: #7B5EA7; }
.text-\[\#6B6880\] { color: #6B6880; }
.text-\[\#EDE8F5\] { color: #EDE8F5; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }
.text-white { color: #ffffff; }
.border-\[\#1C1A2E\] { border-color: #1C1A2E; }
.border-\[\#7B5EA7\] { border-color: #7B5EA7; }
.border-\[\#6B6880\] { border-color: #6B6880; }
.border-\[\#E8EAF0\] { border-color: #E8EAF0; }
.border-white { border-color: #ffffff; }

/* Opacity color variants */
.bg-\[\#1C1A2E\]\/5 { background-color: rgba(28,26,46,0.05); }
.bg-\[\#1C1A2E\]\/10 { background-color: rgba(28,26,46,0.10); }
.bg-\[\#7B5EA7\]\/10 { background-color: rgba(123,94,167,0.10); }
.bg-\[\#7B5EA7\]\/20 { background-color: rgba(123,94,167,0.20); }
.border-\[\#6B6880\]\/20 { border-color: rgba(107,104,128,0.20); }
.border-\[\#6B6880\]\/30 { border-color: rgba(107,104,128,0.30); }
.border-\[\#6B6880\]\/40 { border-color: rgba(107,104,128,0.40); }
.border-\[\#1C1A2E\]\/10 { border-color: rgba(28,26,46,0.10); }
.border-\[\#1C1A2E\]\/20 { border-color: rgba(28,26,46,0.20); }

/* ─── Borders ─────────────────────────────────────────────── */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-l-\[\#7B5EA7\] { border-left-color: #7B5EA7; }
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 2px; }
.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; border-color: rgba(107,104,128,0.20); }

/* ─── Effects ─────────────────────────────────────────────── */
.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_\#1C1A2E\] { box-shadow: 4px 4px 0px #1C1A2E; }
.shadow-\[4px_4px_0px_\#7B5EA7\] { box-shadow: 4px 4px 0px #7B5EA7; }
.shadow-\[2px_2px_0px_\#1C1A2E\] { box-shadow: 2px 2px 0px #1C1A2E; }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

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

/* ─── Transforms ─────────────────────────────────────────── */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-0 { transform: translateY(0); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-45 { transform: rotate(45deg); }
.scale-105 { transform: scale(1.05); }

/* ─── Interactive States ─────────────────────────────────── */
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#7B5EA7\]:focus { border-color: #7B5EA7; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(123,94,167,0.3); }

.hover\:text-\[\#7B5EA7\]:hover { color: #7B5EA7; }
.hover\:bg-\[\#7B5EA7\]:hover { background-color: #7B5EA7; }
.hover\:bg-\[\#EDE8F5\]:hover { background-color: #EDE8F5; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:shadow-\[4px_4px_0px_\#1C1A2E\]:hover { box-shadow: 4px 4px 0px #1C1A2E; }
.hover\:shadow-\[6px_6px_0px_\#7B5EA7\]:hover { box-shadow: 6px 6px 0px #7B5EA7; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:text-\[\#1C1A2E\]:hover { color: #1C1A2E; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group { position: relative; }

/* ─── Misc Utility ─────────────────────────────────────────── */
.not-italic { font-style: normal; }
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.list-outside { list-style-position: outside; }
.resize-none { resize: none; }
.appearance-none { appearance: none; }
.pointer-events-none { pointer-events: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ─── Responsive: md (768px) ──────────────────────────────── */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:block { display: block; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .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\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-0 { padding-top: 0; padding-bottom: 0; }
  .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\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-4 { margin-top: 1rem; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-2\/3 { width: 66.666%; }
  .md\:w-1\/3 { width: 33.333%; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-center { justify-content: center; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:text-center { text-align: center; }
  .md\:border-l { border-left-width: 1px; border-left-style: solid; }
  .md\:border-t-0 { border-top-width: 0; }
  .md\:flex-wrap { flex-wrap: wrap; }
  .md\:max-w-3xl { max-width: 48rem; }
}

/* ─── Responsive: lg (1024px) ─────────────────────────────── */
@media (min-width: 1024px) {
  .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-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:text-xl { font-size: 1.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .lg\:text-8xl { font-size: 6rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:w-1\/2 { width: 50%; }
}

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

/* ─── Accordion ──────────────────────────────────────────── */
.accordion-body { display: none; }
.accordion-body.open { display: block; }

/* ─── Mono label style ────────────────────────────────────── */
.mono-label {
  font-family: 'Satoshi', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B6880;
}

/* ─── Section number style ───────────────────────────────── */
.section-number {
  font-family: 'Clash Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #7B5EA7;
  text-transform: uppercase;
}

/* ─── Caption overlay on image ───────────────────────────── */
.img-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FAFBFD;
  background: rgba(28,26,46,0.6);
  padding: 0.25rem 0.5rem;
  backdrop-filter: blur(4px);
}

/* ─── Rotated label ──────────────────────────────────────── */
.rotated-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B6880;
}

/* ─── Stats strip ────────────────────────────────────────── */
.stat-number {
  font-family: 'Clash Display', serif;
  font-weight: 700;
  line-height: 1;
  color: #1C1A2E;
}

/* ─── Form inputs ────────────────────────────────────────── */
input, textarea, select {
  font-family: 'Satoshi', sans-serif;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #7B5EA7;
}

/* ─── Image placeholders ─────────────────────────────────── */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-placeholder {
  background-color: #E8EAF0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6880;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* ─── Hairline borders ───────────────────────────────────── */
.hairline { border: 1px solid rgba(107,104,128,0.20); }
.hairline-t { border-top: 1px solid rgba(107,104,128,0.20); }
.hairline-b { border-bottom: 1px solid rgba(107,104,128,0.20); }

/* ─── Tag / Chip ─────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(107,104,128,0.30);
  color: #6B6880;
  background: transparent;
}

/* ─── CTA button ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #7B5EA7;
  color: #FAFBFD;
  font-family: 'Clash Display', serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  transition: opacity 150ms;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #1C1A2E;
  font-family: 'Clash Display', serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid #1C1A2E;
  cursor: pointer;
  transition: all 150ms;
  text-decoration: none;
}
.btn-outline:hover { background-color: #1C1A2E; color: #FAFBFD; }

/* ─── AOS base ───────────────────────────────────────────── */
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-in"] { transform: none; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* ─── 404 specific ───────────────────────────────────────── */
.error-code {
  font-family: 'Clash Display', serif;
  font-weight: 900;
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: 1;
  color: #EDE8F5;
  user-select: none;
}

/* ─── Arbitrary value classes ────────────────────────────── */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.text-\[14px\] { font-size: 14px; }
.text-\[13px\] { font-size: 13px; }
.text-\[11px\] { font-size: 11px; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.h-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }
.h-\[400px\] { height: 400px; }
.h-\[480px\] { height: 480px; }
.h-\[520px\] { height: 520px; }
.h-\[560px\] { height: 560px; }
.h-\[600px\] { height: 600px; }
.h-\[320px\] { height: 320px; }
.h-\[280px\] { height: 280px; }
.h-\[260px\] { height: 260px; }
.h-\[240px\] { height: 240px; }
.h-\[200px\] { height: 200px; }
.h-\[160px\] { height: 160px; }
.h-\[80px\] { height: 80px; }
.min-h-\[520px\] { min-height: 520px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[300px\] { min-height: 300px; }
.min-h-\[80px\] { min-height: 80px; }
.w-\[48px\] { width: 48px; }
.h-\[48px\] { height: 48px; }
.w-\[40px\] { width: 40px; }
.h-\[40px\] { height: 40px; }
.w-\[32px\] { width: 32px; }
.h-\[32px\] { height: 32px; }
.w-\[2px\] { width: 2px; }
.w-\[1px\] { width: 1px; }
.bg-\[\#7B5EA7\]\/15 { background-color: rgba(123,94,167,0.15); }
.bg-\[\#7B5EA7\]\/5 { background-color: rgba(123,94,167,0.05); }
.border-\[\#7B5EA7\]\/30 { border-color: rgba(123,94,167,0.30); }
.border-\[\#7B5EA7\]\/50 { border-color: rgba(123,94,167,0.50); }
.text-\[\#7B5EA7\]\/70 { color: rgba(123,94,167,0.70); }
.gap-\[2px\] { gap: 2px; }
.pb-\[100\%\] { padding-bottom: 100%; }
.top-\[50\%\] { top: 50%; }
.left-\[50\%\] { left: 50%; }
.-translate-x-\[50\%\] { transform: translateX(-50%); }
.-translate-y-\[50\%\] { transform: translateY(-50%); }
.py-\[0\.4rem\] { padding-top: 0.4rem; padding-bottom: 0.4rem; }
.px-\[0\.9rem\] { padding-left: 0.9rem; padding-right: 0.9rem; }
.mb-\[0\.3rem\] { margin-bottom: 0.3rem; }
.mt-\[0\.3rem\] { margin-top: 0.3rem; }
.text-\[\#EDE8F5\] { color: #EDE8F5; }
.bg-\[\#EDE8F5\] { background-color: #EDE8F5; }

/* ─── Swiper overrides ───────────────────────────────────── */
.swiper-pagination-bullet-active { background: #7B5EA7 !important; }
.swiper-button-next, .swiper-button-prev { color: #7B5EA7 !important; }
