/* ============================================================
   Taronel Notebook — Prebuilt Tailwind v4.1.5 Output
   Design Family: Techno Cyberpunk (K_FAMILY=2)
   Fonts: Fraunces + Inter Tight (K_FONT=2)
   Accent: teal-petrol #2dd4c4 (K_HUE=2 balanced K_SAT=1)
   Background: deep dark #080e0d (K_BG=2)
   Layout: editorial vertical (K_LAYOUT=2)
   ============================================================ */

/* ===== @THEME DESIGN TOKENS ===== */
:root {
  --color-bg-primary: #080e0d;
  --color-bg-secondary: #0f1a18;
  --color-ink-primary: #e2eeec;
  --color-ink-muted: #6b8f89;
  --color-accent: #2dd4c4;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --radius: 0rem;
  --shadow-glow: 0 0 24px rgba(45, 212, 196, 0.14);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --transition-fast: 150ms cubic-bezier(0.4,0,0.2,1);
  --transition-base: 300ms cubic-bezier(0.4,0,0.2,1);
}

/* ===== BASE RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background-color: #080e0d;
  color: #e2eeec;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 1rem;
  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; }
button { cursor: pointer; background: none; border: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
p { margin: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: inherit; line-height: 1.15; }
ul,ol { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }
fieldset { border: none; padding: 0; margin: 0; }
time { font-style: normal; }

/* ===== SPECIAL COMPONENTS ===== */

/* Terminal grid background */
.terminal-grid {
  background-image:
    linear-gradient(rgba(45,212,196,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,196,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Marquee animation */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-wrapper { overflow: hidden; white-space: nowrap; width: 100%; }
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b8f89;
}
.marquee-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #2dd4c4;
  margin-left: 2rem;
  vertical-align: middle;
}

/* Teal accent bar on left */
.accent-bar { border-left: 2px solid #2dd4c4; padding-left: 1.25rem; }

/* Pull quote */
.pull-quote {
  border-top: 1px solid rgba(107,143,137,0.25);
  border-bottom: 1px solid rgba(107,143,137,0.25);
  padding: 1.75rem 0;
}
.pull-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #e2eeec;
  font-style: italic;
  line-height: 1.5;
}

/* Article body typography */
.article-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2eeec;
  margin-bottom: 0.875rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(107,143,137,0.15);
}
.article-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #e2eeec;
  margin-bottom: 0.75rem;
  margin-top: 1.75rem;
}
.article-body p {
  color: #c8dcd9;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}
.article-body ul { margin-bottom: 1.25rem; padding-left: 0; }
.article-body ul li {
  color: #c8dcd9;
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.article-body ul li::before {
  content: '▸';
  color: #2dd4c4;
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.35em;
}
.article-body ol { margin-bottom: 1.25rem; counter-reset: ol-counter; }
.article-body ol li {
  color: #c8dcd9;
  line-height: 1.8;
  padding-left: 2rem;
  position: relative;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  counter-increment: ol-counter;
}
.article-body ol li::before {
  content: counter(ol-counter, decimal-leading-zero) '.';
  color: #2dd4c4;
  position: absolute;
  left: 0;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  top: 0.25em;
}
.article-body blockquote {
  border-left: 2px solid #2dd4c4;
  padding: 1rem 1.5rem;
  background-color: rgba(45,212,196,0.04);
  margin: 2rem 0;
}
.article-body blockquote p { color: #e2eeec; font-size: 1.125rem; font-style: italic; margin-bottom: 0; }
.article-body .key-takeaways {
  background-color: #0f1a18;
  border: 1px solid rgba(45,212,196,0.2);
  padding: 1.5rem;
  margin: 2rem 0;
}
.article-body .key-takeaways h4 {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2dd4c4;
  margin-bottom: 1rem;
}

/* Author bio */
.author-bio-box {
  border: 1px solid rgba(107,143,137,0.2);
  padding: 1.5rem;
  background-color: #0f1a18;
  margin-top: 3rem;
}

/* Accordion FAQ */
.accordion-btn {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(107,143,137,0.2);
  background: none;
  color: #e2eeec;
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 150ms ease;
}
.accordion-btn:hover { color: #2dd4c4; }
.accordion-btn .accordion-icon { transition: transform 300ms ease; flex-shrink: 0; }
.accordion-btn.is-open .accordion-icon { transform: rotate(45deg); }
.accordion-content { display: none; padding: 1rem 0 0.5rem; }
.accordion-content.is-open { display: block; }
.accordion-content p { color: #c8dcd9; font-size: 0.9375rem; line-height: 1.75; }

/* Statistics number */
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #2dd4c4;
  line-height: 1;
}

/* Section number decorative */
.section-num-deco {
  font-family: 'Courier New', monospace;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(45,212,196,0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Terminal label */
.terminal-label {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b8f89;
}

/* Chip/badge */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(45,212,196,0.25);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2dd4c4;
  font-family: 'Courier New', monospace;
}

/* Card hover glow */
.card-hover {
  transition: box-shadow 300ms ease, border-color 300ms ease;
}
.card-hover:hover {
  box-shadow: 0 0 28px rgba(45,212,196,0.1);
  border-color: rgba(45,212,196,0.3);
}

/* Legal body typography */
.legal-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #e2eeec;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(107,143,137,0.15);
}
.legal-body h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e2eeec;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-body p {
  color: #c8dcd9;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.legal-body ul { margin-bottom: 1rem; }
.legal-body ul li {
  color: #c8dcd9;
  line-height: 1.8;
  font-size: 0.9375rem;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.375rem;
}
.legal-body ul li::before {
  content: '–';
  color: #2dd4c4;
  position: absolute;
  left: 0;
}
.legal-body a { color: #2dd4c4; text-decoration: underline; text-underline-offset: 3px; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.legal-body table th, .legal-body table td {
  border: 1px solid rgba(107,143,137,0.2);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  text-align: left;
}
.legal-body table th { color: #2dd4c4; font-weight: 600; background-color: rgba(45,212,196,0.05); }
.legal-body table td { color: #c8dcd9; }

/* Form styles */
.form-input {
  width: 100%;
  background-color: #080e0d;
  border: 1px solid rgba(107,143,137,0.3);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #e2eeec;
  transition: border-color 200ms ease;
  outline: none;
  font-family: 'Inter Tight', sans-serif;
}
.form-input:focus { border-color: #2dd4c4; }
.form-input::placeholder { color: rgba(107,143,137,0.55); }
.form-textarea { resize: vertical; min-height: 130px; }

/* Process step */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(107,143,137,0.15);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #2dd4c4;
  background-color: rgba(45,212,196,0.08);
  border: 1px solid rgba(45,212,196,0.2);
  padding: 0.25rem 0.625rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* 404 display */
.error-code {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(45,212,196,0.15);
  line-height: 1;
}

/* Map container */
.map-container { width: 100%; aspect-ratio: 16/9; overflow: hidden; border: 1px solid rgba(107,143,137,0.2); }
@media (min-width: 768px) { .map-container { aspect-ratio: 21/9; } }

/* Notification / disclosure block */
.disclosure-block {
  border: 1px solid rgba(107,143,137,0.2);
  padding: 1.25rem 1.5rem;
  background-color: rgba(45,212,196,0.03);
  border-left: 2px solid #2dd4c4;
}
.disclosure-block p { color: #a8c4c0; font-size: 0.875rem; line-height: 1.7; margin-bottom: 0; }

/* ===== TAILWIND UTILITY CLASSES ===== */

/* --- Display --- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }
.table { display: table; }

/* --- Position --- */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* --- Placement --- */
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }

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

/* --- Overflow --- */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* --- Flex --- */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.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; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

/* --- 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-full { grid-column: 1 / -1; }
.row-span-2 { grid-row: span 2 / span 2; }
.grid-flow-row { grid-auto-flow: row; }
.auto-rows-auto { grid-auto-rows: auto; }
.auto-rows-fr { grid-auto-rows: minmax(0, 1fr); }

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

/* --- Space --- */
.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-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

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

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

/* --- Width --- */
.w-0 { width: 0; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-auto { width: auto; }
.w-max { width: max-content; }
.w-fit { width: fit-content; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.w-\[40px\] { width: 40px; }
.w-\[2px\] { width: 2px; }

/* --- Height --- */
.h-0 { height: 0; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-\[2px\] { height: 2px; }
.h-\[3px\] { height: 3px; }
.min-h-screen { min-height: 100vh; }
.min-h-\[50vh\] { min-height: 50vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.max-h-0 { max-height: 0; }
.max-h-screen { max-height: 100vh; }
.max-h-\[400px\] { max-height: 400px; }

/* --- Max Width --- */
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.max-w-none { max-width: none; }
.max-w-\[1220px\] { max-width: 1220px; }
.max-w-\[700px\] { max-width: 700px; }
.max-w-\[780px\] { max-width: 780px; }

/* --- Aspect Ratio --- */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
.aspect-\[3\/2\] { aspect-ratio: 3 / 2; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[1\/1\] { aspect-ratio: 1 / 1; }
.aspect-\[5\/3\] { aspect-ratio: 5 / 3; }

/* --- Typography: Font Family --- */
.font-display { font-family: 'Fraunces', Georgia, serif; }
.font-body { font-family: 'Inter Tight', system-ui, sans-serif; }
.font-mono { font-family: 'Courier New', Courier, monospace; }
.font-sans { font-family: 'Inter Tight', system-ui, sans-serif; }
.font-serif { font-family: 'Fraunces', Georgia, serif; }

/* --- Typography: Font Size --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.05; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[0\.8rem\] { font-size: 0.8rem; }
.text-\[0\.9375rem\] { font-size: 0.9375rem; }
.text-\[1\.0625rem\] { font-size: 1.0625rem; }
.text-\[1\.125rem\] { font-size: 1.125rem; }
.text-\[1\.375rem\] { font-size: 1.375rem; }
.text-\[2\.75rem\] { font-size: 2.75rem; }
.text-\[3\.25rem\] { font-size: 3.25rem; }
.text-\[5rem\] { font-size: 5rem; }
.text-\[6rem\] { font-size: 6rem; }
.text-\[8rem\] { font-size: 8rem; }

/* --- Typography: Font Weight --- */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* --- Typography: Style --- */
.italic { font-style: italic; }
.not-italic { font-style: normal; }

/* --- Typography: Transform --- */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* --- Typography: Tracking --- */
.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\.12em\] { letter-spacing: 0.12em; }
.tracking-\[0\.14em\] { letter-spacing: 0.14em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }

/* --- Typography: Leading --- */
.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; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-\[1\.8\] { line-height: 1.8; }
.leading-\[1\.85\] { line-height: 1.85; }

/* --- Typography: Align --- */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* --- Typography: Decoration --- */
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.underline-offset-4 { text-underline-offset: 4px; }
.underline-offset-2 { text-underline-offset: 2px; }
.decoration-1 { text-decoration-thickness: 1px; }

/* --- Typography: White Space --- */
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.break-words { overflow-wrap: break-word; word-break: break-word; }

/* --- Typography: Other --- */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select-none { user-select: none; }

/* --- Colors: Text --- */
.text-inherit { color: inherit; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-\[\#e2eeec\] { color: #e2eeec; }
.text-\[\#6b8f89\] { color: #6b8f89; }
.text-\[\#2dd4c4\] { color: #2dd4c4; }
.text-\[\#080e0d\] { color: #080e0d; }
.text-\[\#0f1a18\] { color: #0f1a18; }
.text-\[\#c8dcd9\] { color: #c8dcd9; }
.text-\[\#a8c4c0\] { color: #a8c4c0; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }

/* --- Colors: Background --- */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-\[\#080e0d\] { background-color: #080e0d; }
.bg-\[\#0f1a18\] { background-color: #0f1a18; }
.bg-\[\#0a1512\] { background-color: #0a1512; }
.bg-\[\#2dd4c4\] { background-color: #2dd4c4; }
.bg-\[\#131f1d\] { background-color: #131f1d; }

/* Opacity bg variants for cookie banner */
.bg-\[rgba\(27\2C38\2C44\2C0\.78\)\] { background-color: rgba(27,38,44,0.78); }
.bg-\[rgba\(255\2C255\2C255\2C0\.10\)\] { background-color: rgba(255,255,255,0.10); }
.bg-\[rgba\(27\2C67\2C50\2C0\.14\)\] { background-color: rgba(27,67,50,0.14); }
.bg-\[rgba\(45\2C212\2C196\2C0\.05\)\] { background-color: rgba(45,212,196,0.05); }
.bg-\[rgba\(45\2C212\2C196\2C0\.08\)\] { background-color: rgba(45,212,196,0.08); }
.bg-\[rgba\(45\2C212\2C196\2C0\.04\)\] { background-color: rgba(45,212,196,0.04); }
.bg-\[rgba\(45\2C212\2C196\2C0\.03\)\] { background-color: rgba(45,212,196,0.03); }

/* --- Borders --- */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.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-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }

.border-\[\#6b8f89\]\/20 { border-color: rgba(107,143,137,0.2); }
.border-\[\#6b8f89\]\/30 { border-color: rgba(107,143,137,0.3); }
.border-\[\#6b8f89\]\/15 { border-color: rgba(107,143,137,0.15); }
.border-\[\#2dd4c4\] { border-color: #2dd4c4; }
.border-\[\#2dd4c4\]\/30 { border-color: rgba(45,212,196,0.3); }
.border-\[\#2dd4c4\]\/20 { border-color: rgba(45,212,196,0.2); }
.border-\[\#2dd4c4\]\/25 { border-color: rgba(45,212,196,0.25); }
.border-\[\#e2eeec\]\/10 { border-color: rgba(226,238,236,0.1); }
.border-\[rgba\(255\2C255\2C255\2C0\.18\)\] { border-color: rgba(255,255,255,0.18); }
.border-\[rgba\(216\2C226\2C220\2C0\.28\)\] { border-color: rgba(216,226,220,0.28); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/18 { border-color: rgba(255,255,255,0.18); }

/* --- Rounded --- */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[999px\] { border-radius: 9999px; }
.rounded-\[26px\] { border-radius: 26px; }

/* --- Divide --- */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-\[\#6b8f89\]\/20 > * + * { border-top-color: rgba(107,143,137,0.2); }

/* --- Shadows --- */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.shadow { box-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.shadow-md { box-shadow: 0 4px 10px rgba(0,0,0,0.4); }
.shadow-lg { box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
.shadow-xl { box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.shadow-glow { box-shadow: 0 0 24px rgba(45,212,196,0.14); }
.shadow-\[0_20px_60px_rgba\(15\2C23\2C42\2C0\.24\)\] { box-shadow: 0 20px 60px rgba(15,23,42,0.24); }

/* --- Opacity --- */
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.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; }

/* --- Object --- */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* --- Transitions --- */
.transition { transition: all 150ms cubic-bezier(0.4,0,0.2,1); }
.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, fill, stroke; 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-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

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

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

/* --- Cursor / Pointer --- */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }

/* --- Outline / Focus --- */
.outline-none { outline: none; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#2dd4c4\]:focus { border-color: #2dd4c4; }

/* --- Resize --- */
.resize-none { resize: none; }

/* --- Hover States --- */
.hover\:text-\[\#2dd4c4\]:hover { color: #2dd4c4; }
.hover\:text-\[\#e2eeec\]:hover { color: #e2eeec; }
.hover\:text-\[\#080e0d\]:hover { color: #080e0d; }
.hover\:bg-\[\#2dd4c4\]:hover { background-color: #2dd4c4; }
.hover\:bg-\[\#131f1d\]:hover { background-color: #131f1d; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:shadow-glow:hover { box-shadow: 0 0 24px rgba(45,212,196,0.14); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:border-\[\#2dd4c4\]:hover { border-color: #2dd4c4; }

/* Group hover */
.group { }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:underline { text-decoration: underline; }
.group:hover .group-hover\:text-\[\#2dd4c4\] { color: #2dd4c4; }
.group:hover .group-hover\:opacity-80 { opacity: 0.8; }

/* --- Responsive: sm (640px+) --- */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
  .sm\:mt-0 { margin-top: 0; }
}

/* --- Responsive: md (768px+) --- */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:inline-flex { display: inline-flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:inline { display: inline; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:flex-wrap { flex-wrap: wrap; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:justify-center { justify-content: center; }
  .md\:gap-3 { gap: 0.75rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .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\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:pb-24 { padding-bottom: 6rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-12 { margin-top: 3rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.3333%; }
  .md\:w-2\/3 { width: 66.6667%; }
  .md\:w-full { width: 100%; }
  .md\:max-w-\[700px\] { max-width: 700px; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
}

/* --- Responsive: lg (1024px+) --- */
@media (min-width: 1024px) {
  .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-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:max-w-3xl { max-width: 48rem; }
}

/* --- Responsive: xl (1280px+) --- */
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:text-8xl { font-size: 6rem; line-height: 1; }
  .xl\:text-9xl { font-size: 8rem; line-height: 1; }
}
