/* ============================================================
   Kalteno — Men's Wellness Journal
   Prebuilt Tailwind v4.1.5 output
   Design Family: Techno Cyberpunk (K_FAMILY=2)
   Palette: Deep Dark + Teal Petrol Vibrant
   Fonts: Fraunces (display) + Inter Tight (body)
   ============================================================ */

/* ── 1. THEME TOKENS ─────────────────────────────────────── */
@theme {
  --color-bg-primary:   #090F0E;
  --color-bg-secondary: #111C1A;
  --color-ink-primary:  #E8F5F3;
  --color-ink-muted:    #7BA8A4;
  --color-accent:       #00D4B8;
  --font-display:       'Fraunces', Georgia, serif;
  --font-body:          'Inter Tight', system-ui, sans-serif;
  --font-mono:          'Space Mono', 'Courier New', monospace;
  --radius-sm:          2px;
  --radius-md:          4px;
  --shadow-terminal:    0 0 24px rgba(0,212,184,0.18);
  --shadow-glow:        0 0 40px rgba(0,212,184,0.25);
  --border-subtle:      rgba(123,168,164,0.20);
  --spacing-section:    6rem;
}

/* ── 2. BASE RESET / @layer base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--font-body);
  background-color: #090F0E;
  color: #E8F5F3;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: #090F0E;
  color: #E8F5F3;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }

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

.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-center  { align-items: center; }
.items-end     { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline{ align-items: baseline; }

.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.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-center { align-self: center; }
.self-end    { align-self: flex-end; }
.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-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-full{ grid-column: 1 / -1; }

.container   { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

.relative    { position: relative; }
.absolute    { position: absolute; }
.fixed       { position: fixed; }
.sticky      { position: sticky; }
.static      { position: static; }

.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-0       { top: 0; }
.right-0     { right: 0; }
.bottom-0    { bottom: 0; }
.left-0      { left: 0; }
.bottom-4    { bottom: 1rem; }
.top-1\/2    { top: 50%; }
.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; }

.overflow-hidden   { overflow: hidden; }
.overflow-auto     { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto   { overflow-y: auto; }

/* ── 4. SPACING UTILITIES ───────────────────────────────── */
.m-0   { margin: 0; }
.m-1   { margin: 0.25rem; }
.m-2   { margin: 0.5rem; }
.m-4   { margin: 1rem; }
.m-auto{ margin: auto; }
.mx-auto       { margin-left: auto; margin-right: auto; }
.my-0          { margin-top: 0; margin-bottom: 0; }
.my-2          { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4          { margin-top: 1rem; margin-bottom: 1rem; }
.my-6          { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8          { margin-top: 2rem; margin-bottom: 2rem; }
.my-12         { margin-top: 3rem; margin-bottom: 3rem; }
.my-16         { margin-top: 4rem; margin-bottom: 4rem; }
.my-24         { margin-top: 6rem; margin-bottom: 6rem; }
.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; }
.mt-32         { margin-top: 8rem; }
.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-2          { margin-left: 0.5rem; }
.ml-4          { margin-left: 1rem; }
.ml-auto       { margin-left: auto; }
.mr-0          { margin-right: 0; }
.mr-2          { margin-right: 0.5rem; }
.mr-4          { margin-right: 1rem; }
.mr-auto       { margin-right: auto; }

.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-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-1\.5{ padding-top: 0.375rem; padding-bottom: 0.375rem; }
.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-2   { padding-top: 0.5rem; }
.pt-4   { padding-top: 1rem; }
.pt-6   { padding-top: 1.5rem; }
.pt-8   { padding-top: 2rem; }
.pb-2   { padding-bottom: 0.5rem; }
.pb-4   { padding-bottom: 1rem; }
.pb-6   { padding-bottom: 1.5rem; }
.pb-8   { padding-bottom: 2rem; }
.pl-4   { padding-left: 1rem; }
.pl-6   { padding-left: 1.5rem; }
.pr-4   { padding-right: 1rem; }

.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-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; }

/* ── 5. SIZING UTILITIES ─────────────────────────────────── */
.w-full   { width: 100%; }
.w-auto   { width: auto; }
.w-screen { width: 100vw; }
.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-4      { width: 1rem; }
.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-48     { width: 12rem; }
.w-64     { width: 16rem; }

.h-full   { height: 100%; }
.h-auto   { height: auto; }
.h-screen { height: 100vh; }
.h-1      { height: 0.25rem; }
.h-2      { height: 0.5rem; }
.h-4      { height: 1rem; }
.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-48     { height: 12rem; }
.h-64     { height: 16rem; }
.h-72     { height: 18rem; }
.h-80     { height: 20rem; }
.h-96     { height: 24rem; }
.h-px     { height: 1px; }

.min-h-screen { min-height: 100vh; }
.min-h-0      { min-height: 0; }
.min-w-0      { min-width: 0; }
.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-none   { max-width: none; }
.max-w-full   { max-width: 100%; }

.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-\[3\/2\]  { aspect-ratio: 3 / 2; }
.aspect-\[4\/3\]  { aspect-ratio: 4 / 3; }

.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center  { object-position: center; }

/* ── 6. TYPOGRAPHY UTILITIES ─────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }
.font-mono    { font-family: var(--font-mono); }

.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; }

.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; }

.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-6       { line-height: 1.5rem; }

.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; }

.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; }

.truncate       { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-balance   { text-wrap: balance; }
.text-pretty    { text-wrap: pretty; }
.whitespace-nowrap { white-space: nowrap; }
.break-words    { overflow-wrap: break-word; }
.underline      { text-decoration: underline; }
.no-underline   { text-decoration: none; }
.line-through   { text-decoration: line-through; }
.underline-offset-4 { text-underline-offset: 4px; }
.decoration-1   { text-decoration-thickness: 1px; }

.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; }

/* ── 7. COLOR UTILITIES ─────────────────────────────────── */
/* Background */
.bg-transparent   { background-color: transparent; }
.bg-black         { background-color: #000000; }
.bg-white         { background-color: #ffffff; }

/* Brand backgrounds (Arbitrary) */
.bg-\[\#090F0E\]     { background-color: #090F0E; }
.bg-\[\#111C1A\]     { background-color: #111C1A; }
.bg-\[\#0D1614\]     { background-color: #0D1614; }
.bg-\[\#162320\]     { background-color: #162320; }
.bg-\[\#1A2E2B\]     { background-color: #1A2E2B; }
.bg-\[\#00D4B8\]     { background-color: #00D4B8; }
.bg-\[\#00BFA5\]     { background-color: #00BFA5; }
.bg-\[\#004D44\]     { background-color: #004D44; }
.bg-\[\#E8F5F3\]     { background-color: #E8F5F3; }
.bg-\[\#7BA8A4\]     { background-color: #7BA8A4; }
.bg-\[\#0a1412\]     { background-color: #0a1412; }

/* Text colors */
.text-transparent   { color: transparent; }
.text-current       { color: currentColor; }
.text-inherit       { color: inherit; }
.text-black         { color: #000000; }
.text-white         { color: #ffffff; }

/* Brand text (Arbitrary) */
.text-\[\#E8F5F3\]   { color: #E8F5F3; }
.text-\[\#7BA8A4\]   { color: #7BA8A4; }
.text-\[\#00D4B8\]   { color: #00D4B8; }
.text-\[\#090F0E\]   { color: #090F0E; }
.text-\[\#111C1A\]   { color: #111C1A; }
.text-\[\#B2D8D4\]   { color: #B2D8D4; }
.text-\[\#D8E2DC\]   { color: #D8E2DC; }
.text-\[\#00BFA5\]   { color: #00BFA5; }

/* ── 8. BORDER UTILITIES ─────────────────────────────────── */
.border         { border-width: 1px; }
.border-0       { border-width: 0; }
.border-2       { border-width: 2px; }
.border-4       { border-width: 4px; }
.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-l-4     { border-left-width: 4px; }
.border-l-2     { border-left-width: 2px; }
.border-t-0     { border-top-width: 0; }

.border-solid   { border-style: solid; }
.border-dashed  { border-style: dashed; }
.border-none    { border-style: none; }

/* Brand borders (Arbitrary) */
.border-\[\#7BA8A4\]         { border-color: #7BA8A4; }
.border-\[\#00D4B8\]         { border-color: #00D4B8; }
.border-\[\#E8F5F3\]         { border-color: #E8F5F3; }
.border-\[\#111C1A\]         { border-color: #111C1A; }
.border-\[\#7BA8A4\]\/20     { border-color: rgba(123,168,164,0.20); }
.border-\[\#7BA8A4\]\/30     { border-color: rgba(123,168,164,0.30); }
.border-\[\#7BA8A4\]\/40     { border-color: rgba(123,168,164,0.40); }
.border-\[\#00D4B8\]\/30     { border-color: rgba(0,212,184,0.30); }
.border-\[\#00D4B8\]\/50     { border-color: rgba(0,212,184,0.50); }
.border-\[\#E8F5F3\]\/20     { border-color: rgba(232,245,243,0.20); }
.border-\[\#E8F5F3\]\/10     { border-color: rgba(232,245,243,0.10); }
.border-white\/10            { border-color: rgba(255,255,255,0.10); }
.border-white\/18            { border-color: rgba(255,255,255,0.18); }
.border-white\/28            { border-color: rgba(216,226,220,0.28); }

.divide-y > * + * { border-top-width: 1px; }
.divide-\[\#7BA8A4\]\/20 > * + * { border-color: rgba(123,168,164,0.20); }

.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; }

/* ── 9. EFFECT UTILITIES ─────────────────────────────────── */
.shadow          { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1); }
.shadow-md       { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.shadow-lg       { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.shadow-xl       { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.shadow-none     { box-shadow: none; }
.shadow-terminal { box-shadow: var(--shadow-terminal); }
.shadow-glow     { box-shadow: var(--shadow-glow); }

.opacity-0       { opacity: 0; }
.opacity-25      { opacity: 0.25; }
.opacity-50      { opacity: 0.50; }
.opacity-60      { opacity: 0.60; }
.opacity-75      { opacity: 0.75; }
.opacity-80      { opacity: 0.80; }
.opacity-90      { opacity: 0.90; }
.opacity-100     { opacity: 1; }

.backdrop-blur-xl  { backdrop-filter: blur(24px); }
.backdrop-blur-sm  { backdrop-filter: blur(4px); }
.backdrop-blur-md  { backdrop-filter: blur(12px); }
.backdrop-blur-lg  { backdrop-filter: blur(16px); }

.blur            { filter: blur(8px); }
.blur-sm         { filter: blur(4px); }
.brightness-75   { filter: brightness(0.75); }
.brightness-50   { filter: brightness(0.50); }

.bg-clip-text    { -webkit-background-clip: text; background-clip: text; }

/* ── 10. TRANSFORM UTILITIES ─────────────────────────────── */
.rotate-90    { transform: rotate(90deg); }
.rotate-180   { transform: rotate(180deg); }
.-rotate-90   { transform: rotate(-90deg); }
.rotate-45    { transform: rotate(45deg); }
.-rotate-1    { transform: rotate(-1deg); }
.scale-100    { transform: scale(1); }
.scale-105    { transform: scale(1.05); }
.scale-95     { transform: scale(0.95); }
.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-1\/2.-translate-y-1\/2 { transform: translate(-50%, -50%); }

/* ── 11. TRANSITION UTILITIES ───────────────────────────── */
.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-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; }
.transition-all       { transition-property: all; 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; }

/* ── 12. SPECIAL UTILITIES ───────────────────────────────── */
.cursor-pointer  { cursor: pointer; }
.cursor-default  { cursor: default; }
.cursor-text     { cursor: text; }
.select-none     { user-select: none; }
.select-text     { user-select: text; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.appearance-none { appearance: none; -webkit-appearance: none; }
.outline-none    { outline: none; }
.outline-2       { outline-width: 2px; }
.resize-none     { resize: none; }
.resize          { resize: both; }
.list-none       { list-style-type: none; }
.list-disc       { list-style-type: disc; }
.list-decimal    { list-style-type: decimal; }
.list-inside     { list-style-position: inside; }
.list-outside    { list-style-position: outside; }
.table           { display: table; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }

/* ── 13. RESPONSIVE VARIANTS ────────────────────────────── */
@media (min-width: 640px) {
  .sm\:block         { display: block; }
  .sm\:hidden        { display: none; }
  .sm\:flex          { display: flex; }
  .sm\:grid          { display: grid; }
  .sm\:grid-cols-2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-xl       { font-size: 1.25rem; }
  .sm\:text-2xl      { font-size: 1.5rem; }
  .sm\:text-4xl      { font-size: 2.25rem; }
  .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; }
  .sm\:justify-end   { justify-content: flex-end; }
}

@media (min-width: 768px) {
  .md\:block         { display: block; }
  .md\:hidden        { display: none; }
  .md\:flex          { display: flex; }
  .md\:inline-block  { display: inline-block; }
  .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-sm       { font-size: 0.875rem; }
  .md\:text-base     { font-size: 1rem; }
  .md\:text-lg       { font-size: 1.125rem; }
  .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\:text-8xl      { font-size: 6rem; }
  .md\:px-8          { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-8          { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-12         { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16         { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24         { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:mt-0          { margin-top: 0; }
  .md\:mt-4          { margin-top: 1rem; }
  .md\:mt-8          { margin-top: 2rem; }
  .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\:max-w-xl      { max-width: 36rem; }
  .md\:max-w-2xl     { max-width: 42rem; }
  .md\:max-w-3xl     { max-width: 48rem; }
  .md\:w-1\/2        { width: 50%; }
  .md\:w-auto        { width: auto; }
  .md\:text-left     { text-align: left; }
  .md\:text-right    { text-align: right; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:col-span-2    { grid-column: span 2 / span 2; }
  .md\:col-span-3    { grid-column: span 3 / span 3; }
  .md\:col-span-full { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .lg\:block         { display: block; }
  .lg\:hidden        { display: none; }
  .lg\:flex          { display: flex; }
  .lg\:grid          { display: grid; }
  .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\: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\:text-9xl      { font-size: 8rem; }
  .lg\:px-8          { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-32         { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:gap-16        { gap: 4rem; }
  .lg\:gap-24        { gap: 6rem; }
  .lg\:max-w-3xl     { max-width: 48rem; }
  .lg\:col-span-3    { grid-column: span 3 / span 3; }
  .lg\:items-center  { align-items: center; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:text-9xl      { font-size: 8rem; }
  .xl\:px-8          { padding-left: 2rem; padding-right: 2rem; }
  .xl\:gap-8         { gap: 2rem; }
}

/* ── 14. STATE VARIANTS ─────────────────────────────────── */
.hover\:text-\[\#00D4B8\]:hover   { color: #00D4B8; }
.hover\:text-\[\#E8F5F3\]:hover   { color: #E8F5F3; }
.hover\:text-\[\#7BA8A4\]:hover   { color: #7BA8A4; }
.hover\:bg-\[\#00D4B8\]:hover     { background-color: #00D4B8; }
.hover\:bg-\[\#00BFA5\]:hover     { background-color: #00BFA5; }
.hover\:bg-\[\#162320\]:hover     { background-color: #162320; }
.hover\:bg-\[\#1A2E2B\]:hover     { background-color: #1A2E2B; }
.hover\:bg-\[\#111C1A\]:hover     { background-color: #111C1A; }
.hover\:border-\[\#00D4B8\]:hover { border-color: #00D4B8; }
.hover\:opacity-90:hover          { opacity: 0.9; }
.hover\:opacity-80:hover          { opacity: 0.8; }
.hover\:scale-105:hover           { transform: scale(1.05); }
.hover\:shadow-glow:hover         { box-shadow: var(--shadow-glow); }
.hover\:underline:hover           { text-decoration: underline; }

.focus\:outline-none:focus        { outline: none; }
.focus\:border-\[\#00D4B8\]:focus { border-color: #00D4B8; }
.focus\:ring-1:focus              { box-shadow: 0 0 0 1px #00D4B8; }
.focus\:ring-\[\#00D4B8\]:focus   { box-shadow: 0 0 0 1px #00D4B8; }

.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:text-\[\#00D4B8\] { color: #00D4B8; }
.group { position: relative; }

/* ── 15. CUSTOM COMPONENTS & ANIMATIONS ─────────────────── */

/* Marquee / scroll strip */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Terminal cursor blink */
@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.cursor-blink::after {
  content: '█';
  animation: cursor-blink 1s step-end infinite;
  color: #00D4B8;
}

/* Teal glow pulse on accent elements */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0,212,184,0.3); }
  50%       { box-shadow: 0 0 24px rgba(0,212,184,0.6); }
}
.glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }

/* ASCII / geometric divider */
.ascii-divider {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(123,168,164,0.5);
  overflow: hidden;
  white-space: nowrap;
}

/* Terminal label style */
.terminal-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00D4B8;
  background-color: rgba(0,212,184,0.08);
  border: 1px solid rgba(0,212,184,0.25);
  padding: 0.2rem 0.6rem;
  display: inline-block;
}

/* Section number marker */
.section-marker {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(123,168,164,0.5);
  text-transform: uppercase;
}

/* Neon accent line */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #00D4B8, transparent);
  opacity: 0.4;
}

/* CTA button — accent filled */
.btn-accent {
  display: inline-block;
  background-color: #00D4B8;
  color: #090F0E;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid #00D4B8;
  transition: all 200ms;
  cursor: pointer;
}
.btn-accent:hover {
  background-color: #00BFA5;
  border-color: #00BFA5;
  box-shadow: 0 0 20px rgba(0,212,184,0.35);
}

/* CTA button — ghost outline */
.btn-ghost {
  display: inline-block;
  background-color: transparent;
  color: #00D4B8;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(0,212,184,0.5);
  transition: all 200ms;
  cursor: pointer;
}
.btn-ghost:hover {
  background-color: rgba(0,212,184,0.08);
  border-color: #00D4B8;
}

/* Article card */
.article-card {
  background-color: #111C1A;
  border: 1px solid rgba(123,168,164,0.15);
  overflow: hidden;
  transition: all 250ms;
}
.article-card:hover {
  border-color: rgba(0,212,184,0.4);
  box-shadow: 0 0 20px rgba(0,212,184,0.1);
}

/* Stats number */
.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: #00D4B8;
}

/* Accordion item */
.accordion-item {
  border-bottom: 1px solid rgba(123,168,164,0.20);
}
.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #E8F5F3;
  background: none;
  border: none;
}
.accordion-toggle:hover { color: #00D4B8; }
.accordion-content {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #7BA8A4;
  line-height: 1.7;
  display: none;
}
.accordion-content.open { display: block; }

/* Form inputs */
.form-input {
  width: 100%;
  background-color: #090F0E;
  border: 1px solid rgba(123,168,164,0.30);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #E8F5F3;
  outline: none;
  transition: border-color 200ms;
}
.form-input:focus { border-color: #00D4B8; }
.form-input::placeholder { color: rgba(123,168,164,0.5); }

/* Section hero dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,15,14,0.92) 0%, rgba(0,77,68,0.45) 100%);
}

/* Grid scan-line decorative overlay */
.scan-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,212,184,0.02) 2px,
    rgba(0,212,184,0.02) 4px
  );
  pointer-events: none;
}

/* Scrollbar styling */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: #090F0E; }
::-webkit-scrollbar-thumb { background: #00D4B8; border-radius: 2px; }

/* AOS override for dark theme */
[data-aos]    { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }

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

/* Translate utilities for cookie banner */
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Swiper override */
.swiper-pagination-bullet         { background: #7BA8A4; opacity: 0.4; }
.swiper-pagination-bullet-active  { background: #00D4B8; opacity: 1; }
.swiper-button-next,
.swiper-button-prev               { color: #00D4B8; }

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

/* Arbitrary value classes used across HTML pages */
.text-\[0\.65rem\]      { font-size: 0.65rem; }
.text-\[0\.7rem\]       { font-size: 0.7rem; }
.text-\[0\.8rem\]       { font-size: 0.8rem; }
.text-\[0\.9375rem\]    { font-size: 0.9375rem; }
.text-\[10px\]          { font-size: 10px; }
.text-\[11px\]          { font-size: 11px; }
.text-\[13px\]          { font-size: 13px; }
.text-\[14px\]          { font-size: 14px; }
.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\(3\.5rem\,10vw\,8rem\)\]{ font-size: clamp(3.5rem, 10vw, 8rem); }

.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\]    { max-width: 1220px; }
.max-w-\[760px\]     { max-width: 760px; }
.max-w-\[820px\]     { max-width: 820px; }
.max-w-\[680px\]     { max-width: 680px; }
.max-w-\[900px\]     { max-width: 900px; }
.min-h-\[60vh\]      { min-height: 60vh; }
.min-h-\[70vh\]      { min-height: 70vh; }
.min-h-\[80vh\]      { min-height: 80vh; }
.min-h-\[320px\]     { min-height: 320px; }
.min-h-\[400px\]     { min-height: 400px; }
.min-h-\[480px\]     { min-height: 480px; }
.h-\[1px\]           { height: 1px; }
.h-\[2px\]           { height: 2px; }
.h-\[3px\]           { height: 3px; }
.h-\[400px\]         { height: 400px; }
.h-\[480px\]         { height: 480px; }
.h-\[500px\]         { height: 500px; }
.h-\[600px\]         { height: 600px; }
.w-\[1px\]           { width: 1px; }
.w-\[2px\]           { width: 2px; }
.w-\[3px\]           { width: 3px; }
.w-\[48px\]          { width: 48px; }
.w-\[64px\]          { width: 64px; }
.w-\[80px\]          { width: 80px; }
.h-\[48px\]          { height: 48px; }
.h-\[64px\]          { height: 64px; }

.bg-\[\#090F0E\]\/80  { background-color: rgba(9,15,14,0.80); }
.bg-\[\#090F0E\]\/90  { background-color: rgba(9,15,14,0.90); }
.bg-\[\#090F0E\]\/95  { background-color: rgba(9,15,14,0.95); }
.bg-\[\#00D4B8\]\/08  { background-color: rgba(0,212,184,0.08); }
.bg-\[\#00D4B8\]\/10  { background-color: rgba(0,212,184,0.10); }
.bg-\[\#00D4B8\]\/15  { background-color: rgba(0,212,184,0.15); }
.bg-\[\#7BA8A4\]\/10  { background-color: rgba(123,168,164,0.10); }
.bg-\[\#111C1A\]\/90  { background-color: rgba(17,28,26,0.90); }
.bg-\[rgba\(27\,38\,44\,0\.780\)\]  { background-color: rgba(27,38,44,0.780); }
.bg-\[rgba\(27\,67\,50\,0\.140\)\]  { background-color: rgba(27,67,50,0.140); }
.bg-\[rgba\(255\,255\,255\,0\.100\)\] { background-color: rgba(255,255,255,0.100); }

.border-\[rgba\(255\,255\,255\,0\.180\)\] { border-color: rgba(255,255,255,0.180); }
.border-\[rgba\(216\,226\,220\,0\.280\)\] { border-color: rgba(216,226,220,0.280); }

.gap-\[0\.375rem\]   { gap: 0.375rem; }
.p-\[1rem_1\.25rem\] { padding: 1rem 1.25rem; }
.pl-\[1\.5em\]       { padding-left: 1.5em; }

/* Decoration color override */
.decoration-\[\#D8E2DC\] { text-decoration-color: #D8E2DC; }

/* Inset utility for absolute positioning */
.inset-0 { inset: 0; }

/* Line clamp utilities */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Misc */
.shrink-0    { flex-shrink: 0; }
.grow        { flex-grow: 1; }
.isolate     { isolation: isolate; }
.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; }
