/* Ostalin — css/style.css */
/* Prebuilt Tailwind v4.1.5 output | Editorial Minimalist | Deep Dark + Teal-Petrol */

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

@theme {
  --color-bg-primary: #0D1517;
  --color-bg-secondary: #131E21;
  --color-ink-primary: #E6F0EE;
  --color-ink-muted: #7AABA6;
  --color-accent: #14B8A6;
  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.6);
  --spacing-px: 1px;
  --spacing-0: 0px;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 20px;
  --spacing-6: 24px;
  --spacing-7: 28px;
  --spacing-8: 32px;
  --spacing-9: 36px;
  --spacing-10: 40px;
  --spacing-11: 44px;
  --spacing-12: 48px;
  --spacing-14: 56px;
  --spacing-16: 64px;
  --spacing-20: 80px;
  --spacing-24: 96px;
  --spacing-28: 112px;
  --spacing-32: 128px;
  --spacing-36: 144px;
  --spacing-40: 160px;
  --spacing-44: 176px;
  --spacing-48: 192px;
  --spacing-52: 208px;
  --spacing-56: 224px;
  --spacing-60: 240px;
  --spacing-64: 256px;
  --spacing-72: 288px;
  --spacing-80: 320px;
  --spacing-96: 384px;
}

/* ===== BASE RESET ===== */

@layer base {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body { font-family: var(--font-body); background-color: #0D1517; color: #E6F0EE; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  input, textarea, select { font: inherit; outline: none; }
  address { font-style: normal; }
  h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
  .font-display { font-family: var(--font-display); }
  .font-body { font-family: var(--font-body); }
  ::selection { background: #14B8A6; color: #0D1517; }
  :focus-visible { outline: 2px solid #14B8A6; outline-offset: 3px; }
}

/* ===== MARQUEE ANIMATION ===== */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee-scroll 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-wrap { overflow: hidden; width: 100%; }

/* ===== ACCORDION ===== */
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body.open { max-height: 600px; }
.accordion-toggle { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; }
.accordion-toggle .icon { transition: transform 0.3s ease; }
.accordion-toggle.active .icon { transform: rotate(45deg); }

/* ===== LAYOUT UTILITIES ===== */
.container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 16px; padding-right: 16px; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }
.grid { display: grid; }
.contents { display: contents; }
.flow-root { display: flow-root; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col-reverse { flex-direction: column-reverse; }
.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; }
.justify-evenly { justify-content: space-evenly; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.self-center { align-self: center; }
.self-stretch { align-self: stretch; }
.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-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, 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-full { grid-column: 1 / -1; }
.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }
.row-span-3 { grid-row: span 3 / span 3; }
.gap-0 { gap: 0px; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-7 { gap: 28px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }
.gap-14 { gap: 56px; }
.gap-16 { gap: 64px; }
.gap-20 { gap: 80px; }
.gap-x-2 { column-gap: 8px; }
.gap-x-3 { column-gap: 12px; }
.gap-x-4 { column-gap: 16px; }
.gap-x-6 { column-gap: 24px; }
.gap-x-8 { column-gap: 32px; }
.gap-y-2 { row-gap: 8px; }
.gap-y-3 { row-gap: 12px; }
.gap-y-4 { row-gap: 16px; }
.gap-y-6 { row-gap: 24px; }
.gap-y-8 { row-gap: 32px; }
.place-items-center { place-items: center; }
.place-content-center { place-content: center; }

/* ===== POSITION ===== */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.top-1 { top: 4px; }
.top-2 { top: 8px; }
.top-4 { top: 16px; }
.top-6 { top: 24px; }
.top-8 { top: 32px; }
.top-16 { top: 64px; }
.right-0 { right: 0; }
.right-2 { right: 8px; }
.right-4 { right: 16px; }
.right-6 { right: 24px; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: 8px; }
.bottom-4 { bottom: 16px; }
.bottom-6 { bottom: 24px; }
.left-0 { left: 0; }
.left-2 { left: 8px; }
.left-4 { left: 16px; }
.left-1\/2 { left: 50%; }
.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-10 { z-index: -10; }

/* ===== SIZING ===== */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-0 { width: 0; }
.w-1 { width: 4px; }
.w-2 { width: 8px; }
.w-3 { width: 12px; }
.w-4 { width: 16px; }
.w-5 { width: 20px; }
.w-6 { width: 24px; }
.w-7 { width: 28px; }
.w-8 { width: 32px; }
.w-10 { width: 40px; }
.w-12 { width: 48px; }
.w-14 { width: 56px; }
.w-16 { width: 64px; }
.w-20 { width: 80px; }
.w-24 { width: 96px; }
.w-28 { width: 112px; }
.w-32 { width: 128px; }
.w-40 { width: 160px; }
.w-48 { width: 192px; }
.w-56 { width: 224px; }
.w-64 { width: 256px; }
.w-72 { width: 288px; }
.w-80 { width: 320px; }
.w-96 { width: 384px; }
.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%; }
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.max-w-none { max-width: none; }
.max-w-xs { max-width: 320px; }
.max-w-sm { max-width: 384px; }
.max-w-md { max-width: 448px; }
.max-w-lg { max-width: 512px; }
.max-w-xl { max-width: 576px; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }
.max-w-6xl { max-width: 1152px; }
.max-w-7xl { max-width: 1280px; }
.max-w-full { max-width: 100%; }
.max-w-screen-sm { max-width: 640px; }
.max-w-screen-md { max-width: 768px; }
.max-w-screen-lg { max-width: 1024px; }
.max-w-screen-xl { max-width: 1280px; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-0 { height: 0; }
.h-1 { height: 4px; }
.h-2 { height: 8px; }
.h-3 { height: 12px; }
.h-4 { height: 16px; }
.h-5 { height: 20px; }
.h-6 { height: 24px; }
.h-7 { height: 28px; }
.h-8 { height: 32px; }
.h-10 { height: 40px; }
.h-12 { height: 48px; }
.h-14 { height: 56px; }
.h-16 { height: 64px; }
.h-20 { height: 80px; }
.h-24 { height: 96px; }
.h-28 { height: 112px; }
.h-32 { height: 128px; }
.h-40 { height: 160px; }
.h-48 { height: 192px; }
.h-56 { height: 224px; }
.h-64 { height: 256px; }
.h-72 { height: 288px; }
.h-80 { height: 320px; }
.h-96 { height: 384px; }
.min-h-0 { min-height: 0; }
.min-h-full { min-height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-\[300px\] { min-height: 300px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[600px\] { min-height: 600px; }
.min-h-\[700px\] { min-height: 700px; }
.max-h-0 { max-height: 0; }
.max-h-screen { max-height: 100vh; }
.max-h-full { max-height: 100%; }
.max-h-\[600px\] { max-height: 600px; }

/* ===== SPACING — PADDING ===== */
.p-0 { padding: 0; }
.p-1 { padding: 4px; }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }
.p-7 { padding: 28px; }
.p-8 { padding: 32px; }
.p-10 { padding: 40px; }
.p-12 { padding: 48px; }
.p-16 { padding: 64px; }
.p-20 { padding: 80px; }
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 4px; padding-right: 4px; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-7 { padding-left: 28px; padding-right: 28px; }
.px-8 { padding-left: 32px; padding-right: 32px; }
.px-10 { padding-left: 40px; padding-right: 40px; }
.px-12 { padding-left: 48px; padding-right: 48px; }
.px-16 { padding-left: 64px; padding-right: 64px; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-2\.5 { padding-top: 10px; padding-bottom: 10px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.py-7 { padding-top: 28px; padding-bottom: 28px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-10 { padding-top: 40px; padding-bottom: 40px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-14 { padding-top: 56px; padding-bottom: 56px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }
.py-28 { padding-top: 112px; padding-bottom: 112px; }
.py-32 { padding-top: 128px; padding-bottom: 128px; }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 4px; }
.pt-2 { padding-top: 8px; }
.pt-3 { padding-top: 12px; }
.pt-4 { padding-top: 16px; }
.pt-5 { padding-top: 20px; }
.pt-6 { padding-top: 24px; }
.pt-8 { padding-top: 32px; }
.pt-10 { padding-top: 40px; }
.pt-12 { padding-top: 48px; }
.pt-16 { padding-top: 64px; }
.pt-20 { padding-top: 80px; }
.pt-24 { padding-top: 96px; }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 4px; }
.pb-2 { padding-bottom: 8px; }
.pb-3 { padding-bottom: 12px; }
.pb-4 { padding-bottom: 16px; }
.pb-5 { padding-bottom: 20px; }
.pb-6 { padding-bottom: 24px; }
.pb-8 { padding-bottom: 32px; }
.pb-10 { padding-bottom: 40px; }
.pb-12 { padding-bottom: 48px; }
.pb-16 { padding-bottom: 64px; }
.pb-20 { padding-bottom: 80px; }
.pb-24 { padding-bottom: 96px; }
.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 4px; }
.pl-2 { padding-left: 8px; }
.pl-3 { padding-left: 12px; }
.pl-4 { padding-left: 16px; }
.pl-5 { padding-left: 20px; }
.pl-6 { padding-left: 24px; }
.pl-8 { padding-left: 32px; }
.pl-10 { padding-left: 40px; }
.pl-12 { padding-left: 48px; }
.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 4px; }
.pr-2 { padding-right: 8px; }
.pr-3 { padding-right: 12px; }
.pr-4 { padding-right: 16px; }
.pr-5 { padding-right: 20px; }
.pr-6 { padding-right: 24px; }
.pr-8 { padding-right: 32px; }
.pr-10 { padding-right: 40px; }
.pr-12 { padding-right: 48px; }

/* ===== SPACING — MARGIN ===== */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.m-1 { margin: 4px; }
.m-2 { margin: 8px; }
.m-3 { margin: 12px; }
.m-4 { margin: 16px; }
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-1 { margin-left: 4px; margin-right: 4px; }
.mx-2 { margin-left: 8px; margin-right: 8px; }
.mx-3 { margin-left: 12px; margin-right: 12px; }
.mx-4 { margin-left: 16px; margin-right: 16px; }
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.my-1 { margin-top: 4px; margin-bottom: 4px; }
.my-2 { margin-top: 8px; margin-bottom: 8px; }
.my-3 { margin-top: 12px; margin-bottom: 12px; }
.my-4 { margin-top: 16px; margin-bottom: 16px; }
.my-6 { margin-top: 24px; margin-bottom: 24px; }
.my-8 { margin-top: 32px; margin-bottom: 32px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-7 { margin-top: 28px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mt-14 { margin-top: 56px; }
.mt-16 { margin-top: 64px; }
.mt-20 { margin-top: 80px; }
.mt-24 { margin-top: 96px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-7 { margin-bottom: 28px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-14 { margin-bottom: 56px; }
.mb-16 { margin-bottom: 64px; }
.mb-20 { margin-bottom: 80px; }
.mb-24 { margin-bottom: 96px; }
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 4px; }
.ml-2 { margin-left: 8px; }
.ml-3 { margin-left: 12px; }
.ml-4 { margin-left: 16px; }
.ml-6 { margin-left: 24px; }
.ml-8 { margin-left: 32px; }
.ml-auto { margin-left: auto; }
.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 4px; }
.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.mr-4 { margin-right: 16px; }
.mr-6 { margin-right: 24px; }
.mr-8 { margin-right: 32px; }
.mr-auto { margin-right: auto; }
.-mt-1 { margin-top: -4px; }
.-mt-2 { margin-top: -8px; }
.-mt-4 { margin-top: -16px; }
.-mb-1 { margin-bottom: -4px; }
.-mb-2 { margin-bottom: -8px; }

/* ===== TYPOGRAPHY ===== */
.text-xs { font-size: 12px; line-height: 16px; }
.text-sm { font-size: 14px; line-height: 20px; }
.text-base { font-size: 16px; line-height: 24px; }
.text-lg { font-size: 18px; line-height: 28px; }
.text-xl { font-size: 20px; line-height: 28px; }
.text-2xl { font-size: 24px; line-height: 32px; }
.text-3xl { font-size: 30px; line-height: 36px; }
.text-4xl { font-size: 36px; line-height: 40px; }
.text-5xl { font-size: 48px; line-height: 1; }
.text-6xl { font-size: 60px; line-height: 1; }
.text-7xl { font-size: 72px; line-height: 1; }
.text-8xl { font-size: 96px; line-height: 1; }
.text-9xl { font-size: 128px; line-height: 1; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[17px\] { font-size: 17px; }
.text-\[40px\] { font-size: 40px; }
.text-\[48px\] { font-size: 48px; }
.text-\[56px\] { font-size: 56px; }
.text-\[64px\] { font-size: 64px; }
.text-\[72px\] { font-size: 72px; }
.text-\[80px\] { font-size: 80px; }
.text-\[88px\] { font-size: 88px; }
.text-\[100px\] { font-size: 100px; }
.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; }
.font-mono { font-family: 'Space Mono', 'Courier New', monospace; }
.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; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.2\] { line-height: 1.2; }
.leading-\[1\.3\] { line-height: 1.3; }
.leading-\[1\.4\] { line-height: 1.4; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.underline { text-decoration-line: underline; }
.no-underline { text-decoration: none; }
.line-through { text-decoration-line: line-through; }
.decoration-1 { text-decoration-thickness: 1px; }
.underline-offset-4 { text-underline-offset: 4px; }
.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-words { overflow-wrap: break-word; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }

/* ===== COLORS — BRAND PALETTE ===== */
/* Backgrounds */
.bg-\[\#0D1517\] { background-color: #0D1517; }
.bg-\[\#131E21\] { background-color: #131E21; }
.bg-\[\#E6F0EE\] { background-color: #E6F0EE; }
.bg-\[\#14B8A6\] { background-color: #14B8A6; }
.bg-\[\#7AABA6\] { background-color: #7AABA6; }
.bg-\[\#0F1C1F\] { background-color: #0F1C1F; }
.bg-\[\#0A1012\] { background-color: #0A1012; }
.bg-\[\#1A2E33\] { background-color: #1A2E33; }
.bg-\[\#0D9488\] { background-color: #0D9488; }
.bg-\[\#042F2E\] { background-color: #042F2E; }
.bg-\[\#E6F0EE\]\/5 { background-color: rgba(230,240,238,0.05); }
.bg-\[\#E6F0EE\]\/10 { background-color: rgba(230,240,238,0.10); }
.bg-\[\#14B8A6\]\/10 { background-color: rgba(20,184,166,0.10); }
.bg-\[\#14B8A6\]\/15 { background-color: rgba(20,184,166,0.15); }
.bg-\[\#14B8A6\]\/20 { background-color: rgba(20,184,166,0.20); }
/* Text */
.text-\[\#E6F0EE\] { color: #E6F0EE; }
.text-\[\#7AABA6\] { color: #7AABA6; }
.text-\[\#14B8A6\] { color: #14B8A6; }
.text-\[\#0D1517\] { color: #0D1517; }
.text-\[\#131E21\] { color: #131E21; }
.text-\[\#0D9488\] { color: #0D9488; }
.text-\[\#B2D0CB\] { color: #B2D0CB; }
.text-white { color: #ffffff; }
.text-transparent { color: transparent; }
/* Borders */
.border-\[\#E6F0EE\] { border-color: #E6F0EE; }
.border-\[\#7AABA6\] { border-color: #7AABA6; }
.border-\[\#14B8A6\] { border-color: #14B8A6; }
.border-\[\#E6F0EE\]\/10 { border-color: rgba(230,240,238,0.10); }
.border-\[\#E6F0EE\]\/15 { border-color: rgba(230,240,238,0.15); }
.border-\[\#E6F0EE\]\/20 { border-color: rgba(230,240,238,0.20); }
.border-\[\#E6F0EE\]\/30 { border-color: rgba(230,240,238,0.30); }
.border-\[\#7AABA6\]\/20 { border-color: rgba(122,171,166,0.20); }
.border-\[\#7AABA6\]\/30 { border-color: rgba(122,171,166,0.30); }
.border-\[\#14B8A6\]\/30 { border-color: rgba(20,184,166,0.30); }
.border-\[\#14B8A6\]\/40 { border-color: rgba(20,184,166,0.40); }
.divide-\[\#E6F0EE\]\/10 > * + * { border-color: rgba(230,240,238,0.10); }
.divide-y > * + * { border-top-width: 1px; }

/* ===== BORDERS ===== */
.border-0 { border-width: 0px; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-t-0 { border-top-width: 0; }
.border-b-0 { border-bottom-width: 0; }
.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }
.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; }
.rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; }
.rounded-b-none { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

/* ===== EFFECTS ===== */
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.shadow { box-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.shadow-md { box-shadow: 0 6px 20px rgba(0,0,0,0.5); }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.shadow-xl { box-shadow: 0 20px 60px rgba(0,0,0,0.7); }
.shadow-none { box-shadow: none; }
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.blur-sm { filter: blur(4px); }
.blur { filter: blur(8px); }
.blur-md { filter: blur(12px); }
.blur-lg { filter: blur(16px); }
.blur-xl { filter: blur(24px); }
.backdrop-blur-sm { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.backdrop-blur { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.backdrop-blur-md { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.backdrop-blur-xl { -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.backdrop-blur-2xl { -webkit-backdrop-filter: blur(40px); backdrop-filter: blur(40px); }
.grayscale { filter: grayscale(100%); }
.mix-blend-multiply { mix-blend-mode: multiply; }
.mix-blend-screen { mix-blend-mode: screen; }
.mix-blend-overlay { mix-blend-mode: overlay; }

/* ===== TRANSFORMS ===== */
.rotate-0 { transform: rotate(0deg); }
.rotate-45 { transform: rotate(45deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }
.-rotate-90 { transform: rotate(-90deg); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.10); }
.translate-x-0 { transform: translateX(0); }
.translate-y-0 { transform: translateY(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-full { transform: translateX(100%); }
.-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-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.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); }
.ease-linear { transition-timing-function: linear; }

/* ===== OVERFLOW ===== */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-y-hidden { overflow-y: hidden; }

/* ===== CURSOR ===== */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.select-none { user-select: none; }
.select-text { user-select: text; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ===== APPEARANCE ===== */
.appearance-none { -webkit-appearance: none; appearance: none; }
.outline-none { outline: none; }
.outline { outline: 2px solid; }
.resize-none { resize: none; }
.resize { resize: both; }

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

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

/* ===== MISC UTILITIES ===== */
.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; }
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }
.isolate { isolation: isolate; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.collapse { visibility: collapse; }

/* ===== ARBITRARY VALUE CLASSES ===== */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[680px\] { max-width: 680px; }
.max-w-\[600px\] { max-width: 600px; }
.max-w-\[520px\] { max-width: 520px; }
.max-w-\[460px\] { max-width: 460px; }
.h-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }
.h-\[60px\] { height: 60px; }
.h-\[80px\] { height: 80px; }
.h-\[100px\] { height: 100px; }
.h-\[120px\] { height: 120px; }
.h-\[160px\] { height: 160px; }
.h-\[200px\] { height: 200px; }
.h-\[240px\] { height: 240px; }
.h-\[280px\] { height: 280px; }
.h-\[300px\] { height: 300px; }
.h-\[320px\] { height: 320px; }
.h-\[360px\] { height: 360px; }
.h-\[400px\] { height: 400px; }
.h-\[440px\] { height: 440px; }
.h-\[480px\] { height: 480px; }
.h-\[520px\] { height: 520px; }
.h-\[560px\] { height: 560px; }
.h-\[600px\] { height: 600px; }
.min-h-\[80px\] { min-height: 80px; }
.min-h-\[120px\] { min-height: 120px; }
.min-h-\[160px\] { min-height: 160px; }
.min-h-\[200px\] { min-height: 200px; }
.min-h-\[280px\] { min-height: 280px; }
.min-h-\[320px\] { min-height: 320px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[600px\] { min-height: 600px; }
.border-l-2 { border-left-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-l-\[\#14B8A6\] { border-left-color: #14B8A6; }
.space-y-2 > * + * { margin-top: 8px; }
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
.space-y-5 > * + * { margin-top: 20px; }
.space-y-6 > * + * { margin-top: 24px; }
.space-y-8 > * + * { margin-top: 32px; }
.space-y-10 > * + * { margin-top: 40px; }
.space-y-12 > * + * { margin-top: 48px; }
.space-x-2 > * + * { margin-left: 8px; }
.space-x-3 > * + * { margin-left: 12px; }
.space-x-4 > * + * { margin-left: 16px; }
.group { }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:text-\[\#14B8A6\] { color: #14B8A6; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }

/* ===== HOVER STATES ===== */
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:text-\[\#14B8A6\]:hover { color: #14B8A6; }
.hover\:text-\[\#E6F0EE\]:hover { color: #E6F0EE; }
.hover\:bg-\[\#14B8A6\]:hover { background-color: #14B8A6; }
.hover\:bg-\[\#0D9488\]:hover { background-color: #0D9488; }
.hover\:bg-\[\#E6F0EE\]\/5:hover { background-color: rgba(230,240,238,0.05); }
.hover\:border-\[\#14B8A6\]:hover { border-color: #14B8A6; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:no-underline:hover { text-decoration: none; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#14B8A6\]:focus { border-color: #14B8A6; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px #14B8A6; }
.active\:scale-95:active { transform: scale(0.95); }

/* ===== RESPONSIVE — SM (640px) ===== */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .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-lg { font-size: 18px; line-height: 28px; }
  .sm\:text-xl { font-size: 20px; line-height: 28px; }
  .sm\:text-2xl { font-size: 24px; line-height: 32px; }
  .sm\:text-3xl { font-size: 30px; line-height: 36px; }
  .sm\:text-4xl { font-size: 36px; line-height: 40px; }
  .sm\:text-5xl { font-size: 48px; line-height: 1; }
  .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
  .sm\:px-8 { padding-left: 32px; padding-right: 32px; }
  .sm\:py-16 { padding-top: 64px; padding-bottom: 64px; }
  .sm\:py-20 { padding-top: 80px; padding-bottom: 80px; }
  .sm\:py-24 { padding-top: 96px; padding-bottom: 96px; }
  .sm\:mt-0 { margin-top: 0; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:max-w-2xl { max-width: 672px; }
  .sm\:max-w-3xl { max-width: 768px; }
}

/* ===== RESPONSIVE — MD (768px) ===== */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:inline-block { display: inline-block; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .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\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-center { justify-content: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:self-center { align-self: center; }
  .md\:gap-4 { gap: 16px; }
  .md\:gap-6 { gap: 24px; }
  .md\:gap-8 { gap: 32px; }
  .md\:gap-10 { gap: 40px; }
  .md\:gap-12 { gap: 48px; }
  .md\:gap-16 { gap: 64px; }
  .md\:gap-20 { gap: 80px; }
  .md\:gap-x-8 { column-gap: 32px; }
  .md\:gap-x-12 { column-gap: 48px; }
  .md\:text-sm { font-size: 14px; line-height: 20px; }
  .md\:text-base { font-size: 16px; line-height: 24px; }
  .md\:text-lg { font-size: 18px; line-height: 28px; }
  .md\:text-xl { font-size: 20px; line-height: 28px; }
  .md\:text-2xl { font-size: 24px; line-height: 32px; }
  .md\:text-3xl { font-size: 30px; line-height: 36px; }
  .md\:text-4xl { font-size: 36px; line-height: 40px; }
  .md\:text-5xl { font-size: 48px; line-height: 1; }
  .md\:text-6xl { font-size: 60px; line-height: 1; }
  .md\:text-7xl { font-size: 72px; line-height: 1; }
  .md\:text-8xl { font-size: 96px; line-height: 1; }
  .md\:text-\[56px\] { font-size: 56px; }
  .md\:text-\[64px\] { font-size: 64px; }
  .md\:text-\[72px\] { font-size: 72px; }
  .md\:text-\[80px\] { font-size: 80px; }
  .md\:text-\[88px\] { font-size: 88px; }
  .md\:text-\[96px\] { font-size: 96px; }
  .md\:p-0 { padding: 0; }
  .md\:px-4 { padding-left: 16px; padding-right: 16px; }
  .md\:px-6 { padding-left: 24px; padding-right: 24px; }
  .md\:px-8 { padding-left: 32px; padding-right: 32px; }
  .md\:px-10 { padding-left: 40px; padding-right: 40px; }
  .md\:px-12 { padding-left: 48px; padding-right: 48px; }
  .md\:px-16 { padding-left: 64px; padding-right: 64px; }
  .md\:py-4 { padding-top: 16px; padding-bottom: 16px; }
  .md\:py-6 { padding-top: 24px; padding-bottom: 24px; }
  .md\:py-8 { padding-top: 32px; padding-bottom: 32px; }
  .md\:py-10 { padding-top: 40px; padding-bottom: 40px; }
  .md\:py-12 { padding-top: 48px; padding-bottom: 48px; }
  .md\:py-16 { padding-top: 64px; padding-bottom: 64px; }
  .md\:py-20 { padding-top: 80px; padding-bottom: 80px; }
  .md\:py-24 { padding-top: 96px; padding-bottom: 96px; }
  .md\:py-28 { padding-top: 112px; padding-bottom: 112px; }
  .md\:py-32 { padding-top: 128px; padding-bottom: 128px; }
  .md\:pt-0 { padding-top: 0; }
  .md\:pt-4 { padding-top: 16px; }
  .md\:pt-8 { padding-top: 32px; }
  .md\:pt-12 { padding-top: 48px; }
  .md\:pt-16 { padding-top: 64px; }
  .md\:pt-20 { padding-top: 80px; }
  .md\:pt-24 { padding-top: 96px; }
  .md\:pb-0 { padding-bottom: 0; }
  .md\:pb-4 { padding-bottom: 16px; }
  .md\:pb-8 { padding-bottom: 32px; }
  .md\:pb-12 { padding-bottom: 48px; }
  .md\:pb-16 { padding-bottom: 64px; }
  .md\:pb-20 { padding-bottom: 80px; }
  .md\:pb-24 { padding-bottom: 96px; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-4 { margin-top: 16px; }
  .md\:mt-6 { margin-top: 24px; }
  .md\:mt-8 { margin-top: 32px; }
  .md\:mt-12 { margin-top: 48px; }
  .md\:mt-16 { margin-top: 64px; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:mb-4 { margin-bottom: 16px; }
  .md\:mb-6 { margin-bottom: 24px; }
  .md\:mb-8 { margin-bottom: 32px; }
  .md\:ml-0 { margin-left: 0; }
  .md\:ml-auto { margin-left: auto; }
  .md\:mr-auto { margin-right: auto; }
  .md\:mx-auto { margin-left: auto; margin-right: auto; }
  .md\:w-auto { width: auto; }
  .md\:w-full { width: 100%; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:w-1\/4 { width: 25%; }
  .md\:w-3\/4 { width: 75%; }
  .md\:max-w-3xl { max-width: 768px; }
  .md\:max-w-4xl { max-width: 896px; }
  .md\:max-w-5xl { max-width: 1024px; }
  .md\:max-w-6xl { max-width: 1152px; }
  .md\:max-w-7xl { max-width: 1280px; }
  .md\:max-w-\[600px\] { max-width: 600px; }
  .md\:max-w-\[680px\] { max-width: 680px; }
  .md\:max-w-\[800px\] { max-width: 800px; }
  .md\:max-w-\[1220px\] { max-width: 1220px; }
  .md\:h-auto { height: auto; }
  .md\:h-\[400px\] { height: 400px; }
  .md\:h-\[480px\] { height: 480px; }
  .md\:h-\[520px\] { height: 520px; }
  .md\:h-\[560px\] { height: 560px; }
  .md\:h-\[600px\] { height: 600px; }
  .md\:min-h-\[400px\] { min-height: 400px; }
  .md\:min-h-\[500px\] { min-height: 500px; }
  .md\:min-h-\[600px\] { min-height: 600px; }
  .md\:min-h-\[700px\] { min-height: 700px; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:aspect-\[16\/9\] { aspect-ratio: 16/9; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:border-r { border-right-width: 1px; }
  .md\:border-0 { border-width: 0; }
  .md\:border-t-0 { border-top-width: 0; }
  .md\:not-italic { font-style: normal; }
  .md\:flex-wrap { flex-wrap: wrap; }
  .md\:flex-nowrap { flex-wrap: nowrap; }
  .md\:overflow-hidden { overflow: hidden; }
  .md\:mt-0 { margin-top: 0; }
}

/* ===== RESPONSIVE — LG (1024px) ===== */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .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\:gap-6 { gap: 24px; }
  .lg\:gap-8 { gap: 32px; }
  .lg\:gap-10 { gap: 40px; }
  .lg\:gap-12 { gap: 48px; }
  .lg\:gap-16 { gap: 64px; }
  .lg\:gap-20 { gap: 80px; }
  .lg\:text-lg { font-size: 18px; line-height: 28px; }
  .lg\:text-xl { font-size: 20px; line-height: 28px; }
  .lg\:text-2xl { font-size: 24px; line-height: 32px; }
  .lg\:text-3xl { font-size: 30px; line-height: 36px; }
  .lg\:text-4xl { font-size: 36px; line-height: 40px; }
  .lg\:text-5xl { font-size: 48px; line-height: 1; }
  .lg\:text-6xl { font-size: 60px; line-height: 1; }
  .lg\:text-7xl { font-size: 72px; line-height: 1; }
  .lg\:text-8xl { font-size: 96px; line-height: 1; }
  .lg\:text-\[64px\] { font-size: 64px; }
  .lg\:text-\[80px\] { font-size: 80px; }
  .lg\:text-\[88px\] { font-size: 88px; }
  .lg\:text-\[96px\] { font-size: 96px; }
  .lg\:px-8 { padding-left: 32px; padding-right: 32px; }
  .lg\:px-12 { padding-left: 48px; padding-right: 48px; }
  .lg\:px-16 { padding-left: 64px; padding-right: 64px; }
  .lg\:py-16 { padding-top: 64px; padding-bottom: 64px; }
  .lg\:py-20 { padding-top: 80px; padding-bottom: 80px; }
  .lg\:py-24 { padding-top: 96px; padding-bottom: 96px; }
  .lg\:py-28 { padding-top: 112px; padding-bottom: 112px; }
  .lg\:py-32 { padding-top: 128px; padding-bottom: 128px; }
  .lg\:mt-0 { margin-top: 0; }
  .lg\:max-w-\[680px\] { max-width: 680px; }
  .lg\:max-w-\[800px\] { max-width: 800px; }
}

/* ===== RESPONSIVE — XL (1280px) ===== */
@media (min-width: 1280px) {
  .xl\:text-\[96px\] { font-size: 96px; }
  .xl\:text-\[108px\] { font-size: 108px; }
  .xl\:px-0 { padding-left: 0; padding-right: 0; }
  .xl\:gap-16 { gap: 64px; }
  .xl\:gap-20 { gap: 80px; }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ===== EDITORIAL MINIMALIST COMPONENTS ===== */

/* Section label — ALL CAPS mono-terminal */
.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7AABA6;
}

/* Section number marker */
.section-marker {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: rgba(20, 184, 166, 0.12);
  position: absolute;
  top: -12px;
  left: -8px;
  pointer-events: none;
  user-select: none;
}

/* Image caption overlay */
.caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(13,21,23,0.85) 0%, transparent 100%);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(230,240,238,0.7);
}

/* Hairline border divider */
.hairline { border-top: 1px solid rgba(230,240,238,0.08); }

/* Teal accent bar */
.accent-bar {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #14B8A6;
  margin-bottom: 20px;
}

/* Stat number */
.stat-value {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: #14B8A6;
}

/* CTA button primary */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #14B8A6;
  color: #0D1517;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover { background-color: #0D9488; }

/* CTA button outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #E6F0EE;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid rgba(230,240,238,0.25);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn-outline:hover { border-color: #14B8A6; color: #14B8A6; }

/* Card */
.card-editorial {
  background-color: #131E21;
  border: 1px solid rgba(230,240,238,0.07);
  padding: 32px;
  transition: border-color 0.25s ease;
}
.card-editorial:hover { border-color: rgba(20,184,166,0.35); }

/* Nav link */
.nav-link {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #E6F0EE;
  text-decoration: none;
  transition: color 0.15s ease;
  opacity: 0.75;
}
.nav-link:hover, .nav-link.active { color: #14B8A6; opacity: 1; }

/* Form input */
.form-input {
  width: 100%;
  background-color: #131E21;
  border: 1px solid rgba(122,171,166,0.25);
  color: #E6F0EE;
  padding: 12px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease;
  outline: none;
  border-radius: 0;
}
.form-input:focus { border-color: #14B8A6; }
.form-input::placeholder { color: rgba(122,171,166,0.5); }

/* Image placeholder */
.img-placeholder {
  background-color: #131E21;
  border: 1px solid rgba(230,240,238,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0D1517; }
::-webkit-scrollbar-thumb { background: rgba(20,184,166,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(20,184,166,0.5); }

/* Smooth focus ring */
*:focus-visible { outline: 1px solid #14B8A6; outline-offset: 3px; }

/* Sticky header */
.header-sticky { position: sticky; top: 0; z-index: 40; }

/* Page transition fade */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fade-in 0.5s ease forwards; }

/* Hero large text */
.hero-display {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.05;
  color: #E6F0EE;
}

/* Teal text gradient */
.text-teal-glow {
  color: #14B8A6;
  text-shadow: 0 0 40px rgba(20,184,166,0.25);
}

/* Process step */
.process-step { position: relative; }
.process-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: -24px;
  width: 1px;
  background: rgba(20,184,166,0.2);
}
.process-step:last-child::before { display: none; }

/* Tag / chip */
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14B8A6;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.2);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Legal page prose */
.prose-legal { max-width: 800px; }
.prose-legal h2 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: #E6F0EE;
  margin-top: 48px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(230,240,238,0.08);
  padding-bottom: 12px;
}
.prose-legal h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: #E6F0EE;
  margin-top: 32px;
  margin-bottom: 12px;
}
.prose-legal p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(230,240,238,0.8);
  margin-bottom: 16px;
}
.prose-legal ul {
  margin: 16px 0 16px 24px;
  list-style: disc;
}
.prose-legal li {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(230,240,238,0.8);
  margin-bottom: 6px;
  list-style: disc;
}
.prose-legal a {
  color: #14B8A6;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose-legal strong {
  color: #E6F0EE;
  font-weight: 600;
}
