/* Custom Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
  --bg-color: #050505;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --accent: #d97706;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* keep in-page anchors clear of the fixed pill nav */
  scroll-padding-top: 6rem;
}

body {
  background-color: var(--bg-color);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.5;
  /* crisper type rendering on dark backgrounds */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Accessible keyboard focus (doesn't affect mouse users) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection {
  background-color: rgba(245, 158, 11, 0.3);
  color: #fef3c7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pageFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  0% {
    transform: translateY(110%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes scrollIndicator {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}

/* Fade In */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

/* Page Transition */
.page-transition {
  animation: pageFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Delay Classes */
.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

/* Reveal Text */
.reveal-text {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.reveal-text span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Text Highlight */
.text-highlight {
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #d97706;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}

.is-visible .text-highlight::after,
.text-highlight.is-visible::after {
  width: 100%;
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Float Animation */
.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Scroll Line */
.scroll-line {
  animation: scrollIndicator 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* Marquee Animation */
.animate-marquee {
  display: flex;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Tactical Grid */
.tactical-grid {
  background-size: 50px 50px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

/* Glow Card Wrapper */
.glow-card-wrapper {
  position: relative;
}

.glow-card-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(217, 119, 6, 0.6), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.glow-card-wrapper:hover::before {
  opacity: 1;
}

/* Tilt Card */
.tilt-card {
  transform-style: preserve-3d;
}

/* Visual Graphics */
.visual-graphic {
  background: radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.15) 0%, transparent 50%), linear-gradient(135deg, #0f172a 0%, #020617 100%);
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
}

.visual-bbq {
  background: radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 60%), linear-gradient(135deg, #270404 0%, #050505 100%);
}

/* Magnetic Button */
.magnetic-btn {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.magnetic-btn-primary {
  background-color: #f4f4f5;
  color: #09090b;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.magnetic-btn-primary:hover {
  background-color: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.magnetic-btn-secondary {
  background-color: transparent;
  color: #d4d4d8;
  border: 1px solid #27272a;
  transition: border-color 0.3s, color 0.3s;
}

.magnetic-btn-secondary:hover {
  border-color: #71717a;
  color: #ffffff;
}

.magnetic-btn-primary .btn-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(to right, #fbbf24, #ea580c);
  filter: blur(12px);
  pointer-events: none;
}

.magnetic-btn-primary:hover .btn-glow {
  opacity: 0.2;
}

.magnetic-btn-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

/* Cookie Banner Styles */
#cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

#cookie-banner.visible {
  display: flex;
}

#cookie-banner p {
  margin: 0;
  color: #d4d4d8;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 76%;
}

#cookie-banner p a {
  color: #fbbf24;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-actions button {
  border: none;
  border-radius: 9999px;
  padding: 0.85rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookie-actions button:hover {
  transform: translateY(-1px);
}

.cookie-actions .accept {
  background: #f59e0b;
  color: #050505;
}

.cookie-actions .decline {
  background: rgba(148, 163, 184, 0.12);
  color: #f8fafc;
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  #cookie-banner p {
    max-width: 100%;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Tailwind Utilities - Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-screen { width: 100vw; }
.h-screen { height: 100vh; }
.w-max { width: max-content; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }
.max-w-screen-lg { max-width: 64rem; }
.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-sm { max-width: 24rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }

/* Tailwind Utilities - Specific Widths/Heights */
.w-1 { width: 0.25rem; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.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-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }

.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.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-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }

/* Tailwind Utilities - Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-14 { padding: 3.5rem; }

.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; }

.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.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; }

.pl-0 { padding-left: 0; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }

.pr-0 { padding-right: 0; }
.pr-6 { padding-right: 1.5rem; }

.pt-0 { padding-top: 0; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }

.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-20 { padding-bottom: 5rem; }
.pb-32 { padding-bottom: 8rem; }

/* Tailwind Utilities - Margin */
.m-0 { margin: 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-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.my-20 { margin-top: 5rem; margin-bottom: 5rem; }
.my-24 { margin-top: 6rem; margin-bottom: 6rem; }
.my-32 { margin-top: 8rem; margin-bottom: 8rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.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; }
.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-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }

/* Tailwind Utilities - Display */
.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; }

/* Tailwind Utilities - Flex */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.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; }
.justify-evenly { justify-content: space-evenly; }
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.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-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }

/* 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)); }
/* responsive grid-cols moved into @media (min-width:768px) below */

/* Text Utilities */
.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; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-zinc-100 { color: #f4f4f5; }
.text-zinc-200 { color: #e4e4e7; }
.text-zinc-300 { color: #d4d4d8; }
.text-zinc-400 { color: #a1a1aa; }
.text-zinc-500 { color: #71717a; }
.text-zinc-600 { color: #52525b; }
.text-zinc-700 { color: #3f3f46; }
.text-zinc-800 { color: #27272a; }
.text-zinc-900 { color: #18181b; }
.text-zinc-950 { color: #09090b; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-sky-500 { color: #0ea5e9; }
.text-emerald-500 { color: #10b981; }
.text-orange-500 { color: #f97316; }

.text-transparent { color: transparent; }

/* Background Utilities */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-zinc-100 { background-color: #f4f4f5; }
.bg-zinc-800 { background-color: #27272a; }
.bg-zinc-900 { background-color: #18181b; }
.bg-zinc-950 { background-color: #09090b; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-600 { background-color: #d97706; }
.bg-sky-500 { background-color: #0ea5e9; }
.bg-emerald-500 { background-color: #10b981; }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.from-zinc-100 { --tw-gradient-from: #f4f4f5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 244, 245, 0)); }
.from-zinc-400 { --tw-gradient-from: #a1a1aa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(161, 161, 170, 0)); }
.from-zinc-600 { --tw-gradient-from: #52525b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 82, 91, 0)); }
.from-zinc-900 { --tw-gradient-from: #18181b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(24, 24, 27, 0)); }
.from-sky-500 { --tw-gradient-from: #0ea5e9; }
.from-amber-500 { --tw-gradient-from: #f59e0b; }
.to-transparent { --tw-gradient-to: transparent; }
.to-zinc-600 { --tw-gradient-to: #52525b; }
.to-zinc-600 { --tw-gradient-to: #52525b; }
.to-\[\#0a0a0a\] { --tw-gradient-to: #0a0a0a; }
.to-transparent { --tw-gradient-to: transparent; }

.bg-clip-text { background-clip: text; -webkit-background-clip: text; }

/* Border Utilities */
.border { border-width: 1px; border-color: #e4e4e7; }
.border-t { border-top-width: 1px; border-color: #e4e4e7; }
.border-b { border-bottom-width: 1px; border-color: #e4e4e7; }
.border-l { border-left-width: 1px; border-color: #e4e4e7; }
.border-r { border-right-width: 1px; border-color: #e4e4e7; }
.border-zinc-600 { border-color: #52525b; }
.border-zinc-700 { border-color: #3f3f46; }
.border-zinc-800 { border-color: #27272a; }
.border-zinc-800\/50 { border-color: rgba(39, 39, 42, 0.5); }
.border-black\/70 { border-color: rgba(0, 0, 0, 0.7); }

/* Rounded Utilities */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[2rem\] { border-radius: 2rem; }

/* Shadow Utilities */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.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-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05); }

/* Opacity Utilities */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-100 { opacity: 1; }

/* Transform Utilities */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-x-0 { --tw-translate-x: 0px; }
.translate-y-0 { --tw-translate-y: 0px; }
.translate-y-4 { --tw-translate-y: 1rem; }
.translate-y-\[-2px\] { --tw-translate-y: -2px; }
.scale-95 { --tw-scale-x: 0.95; --tw-scale-y: 0.95; }
.scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }

/* 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-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-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); }

/* Backdrop Filter */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

/* Position Utilities */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-0px { inset: 0px; }
.inset { inset: 0; }
.top-0 { top: 0; }
.top-1rem { top: 1rem; }
.top-6 { top: 1.5rem; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: 0.5rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.top-full { top: 100%; }
.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-60 { z-index: 60; }
.z-\[100\] { z-index: 100; }
.-z-10 { z-index: -10; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Aspect Ratio */
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-fill { object-fit: fill; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Visibility */
.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* Filter and Blur */
.filter { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.blur-\[80px\] { --tw-blur: blur(80px); }
.blur-\[100px\] { --tw-blur: blur(100px); }
.blur-\[12px\] { --tw-blur: blur(12px); }
.blur-\[60px\] { --tw-blur: blur(60px); }
.blur-xl { --tw-blur: blur(20px); }
.blur-3xl { --tw-blur: blur(64px); }

/* Box Shadow with Colors */
.shadow-\[0_0_5px_rgba\(245\,158\,11\,0\.5\)\] { box-shadow: 0 0 5px rgba(245, 158, 11, 0.5); }
.shadow-\[0_0_15px_rgba\(217\,119\,6\,0\.3\)\] { box-shadow: 0 0 15px rgba(217, 119, 6, 0.3); }
.shadow-\[0_0_20px_rgba\(255\,255\,255\,0\.1\)\] { box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
.shadow-\[0_0_25px_rgba\(217\,119\,6\,0\.5\)\] { box-shadow: 0 0 25px rgba(217, 119, 6, 0.5); }
.shadow-\[0_0_30px_rgba\(255\,255\,255\,0\.2\)\] { box-shadow: 0 0 30px rgba(255, 255, 255, 0.2); }

/* ============================================================
   FAQ Accordion (component)
   Answers are visible by default (no-JS / crawler friendly);
   JS adds .faq-closed to collapse all but the active item.
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #27272a;
  border-radius: 1rem;
  background-color: rgba(24, 24, 27, 0.4);
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* open look (default state) */
.faq-item {
  border-color: rgba(245, 158, 11, 0.30);
  background-color: rgba(24, 24, 27, 0.6);
  box-shadow: 0 0 32px -16px rgba(217, 119, 6, 0.35);
}

.faq-item.faq-closed {
  border-color: #27272a;
  background-color: rgba(24, 24, 27, 0.35);
  box-shadow: none;
}

.faq-item.faq-closed:hover {
  border-color: #3f3f46;
  background-color: rgba(24, 24, 27, 0.5);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f4f4f5;
  transition: color 0.25s ease;
}

.faq-item.faq-closed .faq-trigger { color: #d4d4d8; }
.faq-item.faq-closed .faq-trigger:hover { color: #f4f4f5; }

@media (min-width: 768px) {
  .faq-trigger { font-size: 1.0625rem; }
}

.faq-badge {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 158, 11, 0.5);
  background-color: rgba(245, 158, 11, 0.10);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.faq-badge svg { width: 18px; height: 18px; }

.faq-item.faq-closed .faq-badge {
  transform: rotate(0deg);
  border-color: #3f3f46;
  background-color: #09090b;
  color: #71717a;
}

.faq-item.faq-closed:hover .faq-badge {
  border-color: #52525b;
  color: #a1a1aa;
}

/* height animation without clipping or magic numbers */
.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.faq-closed .faq-answer { grid-template-rows: 0fr; }

.faq-answer-inner { overflow: hidden; }

.faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  color: #a1a1aa;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Max Height Utilities */
.max-h-0 { max-height: 0; }
.max-h-96 { max-height: 24rem; }

/* Shrink Utilities */
.shrink-0 { flex-shrink: 0; }

/* Stroke */
.stroke-none { stroke: none; }

/* Animate Pulse */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ============================================================
   Missing utilities & variants (repair of incomplete static build)
   ============================================================ */

/* Letter spacing */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Text & misc */
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.whitespace-nowrap { white-space: nowrap; }
.resize-none { resize: none; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.origin-top { transform-origin: top; }
.flex-shrink-0 { flex-shrink: 0; }
.font-sans { font-family: 'Plus Jakarta Sans', sans-serif; }
.ml-4 { margin-left: 1rem; }

/* space-between children */
.space-x-1 > * + * { margin-left: 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-12 > * + * { margin-top: 3rem; }

/* Spacing extras */
.mt-1 { margin-top: 0.25rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.pt-12 { padding-top: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pr-2 { padding-right: 0.5rem; }

/* Sizing extras */
.w-0 { width: 0; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-3\/4 { width: 75%; }
.h-3\/4 { height: 75%; }
.w-\[18px\] { width: 18px; }
.h-\[18px\] { height: 18px; }
.w-\[28px\] { width: 28px; }
.h-\[28px\] { height: 28px; }
.w-\[1px\] { width: 1px; }
.h-\[1px\] { height: 1px; }
.w-\[600px\] { width: 600px; }
.h-\[600px\] { height: 600px; }
.min-h-\[90vh\] { min-height: 90vh; }
.min-h-\[400px\] { min-height: 400px; }

/* Font sizes (arbitrary) */
.text-\[10px\] { font-size: 10px; }
.text-\[4rem\] { font-size: 4rem; line-height: 1; }
.text-\[5rem\] { font-size: 5rem; line-height: 1; }
.leading-\[1\.05\] { line-height: 1.05; }

/* Opacity extras */
.opacity-80 { opacity: 0.8; }
.opacity-\[0\.15\] { opacity: 0.15; }

/* Positioning extras */
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.inset-y-0 { top: 0; bottom: 0; }
.-inset-1 { inset: -0.25rem; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }

/* Translate — self-composing so they apply without a .transform class */
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)); }
.-translate-y-1\/2 { --tw-translate-y: -50%; transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)); }

/* Scale — apply transform directly */
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

/* Rotate (FAQ chevron, etc.) */
.rotate-180 { transform: rotate(180deg); }

/* Blur — apply filter directly (elements don't carry a .filter class) */
.blur-xl { filter: blur(20px); }
.blur-3xl { filter: blur(64px); }
.blur-\[12px\] { filter: blur(12px); }
.blur-\[60px\] { filter: blur(60px); }
.blur-\[80px\] { filter: blur(80px); }
.blur-\[100px\] { filter: blur(100px); }
.blur-\[120px\] { filter: blur(120px); }

/* Aspect ratio */
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }

/* Solid colors that were missing */
.bg-red-500 { background-color: #ef4444; }
.border-amber-500 { border-color: #f59e0b; }
.bg-\[\#050505\] { background-color: #050505; }

/* Gradient stops that were missing */
.from-zinc-300 { --tw-gradient-from: #d4d4d8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(212,212,216,0)); }
.from-zinc-800 { --tw-gradient-from: #27272a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(39,39,42,0)); }
.from-\[\#050505\] { --tw-gradient-from: #050505; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5,5,5,0)); }
.from-amber-500\/20 { --tw-gradient-from: rgba(245,158,11,0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245,158,11,0)); }
.from-sky-500\/20 { --tw-gradient-from: rgba(14,165,233,0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(14,165,233,0)); }
.from-orange-500\/20 { --tw-gradient-from: rgba(249,115,22,0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249,115,22,0)); }
.to-zinc-900 { --tw-gradient-to: #18181b; }

/* Arbitrary radial-gradient background (modal panel) */
.bg-\[radial-gradient\(circle_at_top_left\,rgba\(217\,119\,6\,0\.15\)\,transparent_50\%\)\] {
  background-image: radial-gradient(circle at top left, rgba(217,119,6,0.15), transparent 50%);
}

/* Opacity-suffixed background colors */
.bg-zinc-900\/30 { background-color: rgba(24,24,27,0.3); }
.bg-zinc-900\/40 { background-color: rgba(24,24,27,0.4); }
.bg-zinc-900\/50 { background-color: rgba(24,24,27,0.5); }
.bg-zinc-900\/80 { background-color: rgba(24,24,27,0.8); }
.bg-zinc-900\/85 { background-color: rgba(24,24,27,0.85); }
.bg-zinc-900\/90 { background-color: rgba(24,24,27,0.9); }
.bg-zinc-900\/95 { background-color: rgba(24,24,27,0.95); }
.bg-zinc-950\/30 { background-color: rgba(9,9,11,0.3); }
.bg-zinc-950\/50 { background-color: rgba(9,9,11,0.5); }
.bg-zinc-800\/50 { background-color: rgba(39,39,42,0.5); }
.bg-amber-500\/5 { background-color: rgba(245,158,11,0.05); }
.bg-amber-500\/10 { background-color: rgba(245,158,11,0.1); }
.bg-amber-900\/15 { background-color: rgba(120,53,15,0.15); }
.bg-zinc-600\/10 { background-color: rgba(82,82,91,0.1); }
.bg-sky-500\/5 { background-color: rgba(14,165,233,0.05); }
.bg-emerald-500\/5 { background-color: rgba(16,185,129,0.05); }
.bg-black\/30 { background-color: rgba(0,0,0,0.3); }
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }
.bg-black\/70 { background-color: rgba(0,0,0,0.7); }

/* Opacity-suffixed borders */
.border-zinc-800\/50 { border-color: rgba(39,39,42,0.5); }
.border-zinc-800\/60 { border-color: rgba(39,39,42,0.6); }
.border-zinc-800\/80 { border-color: rgba(39,39,42,0.8); }
.border-zinc-700\/50 { border-color: rgba(63,63,70,0.5); }
.border-zinc-700\/80 { border-color: rgba(63,63,70,0.8); }
.border-amber-500\/30 { border-color: rgba(245,158,11,0.3); }

/* Opacity-suffixed text */
.text-red-500\/70 { color: rgba(239,68,68,0.7); }
.text-zinc-800\/30 { color: rgba(39,39,42,0.3); }

/* Arbitrary shadows */
.shadow-\[0_0_8px_rgba\(245\,158\,11\,0\.8\)\] { box-shadow: 0 0 8px rgba(245,158,11,0.8); }
.shadow-\[0_0_15px_rgba\(217\,119\,6\,0\.2\)\] { box-shadow: 0 0 15px rgba(217,119,6,0.2); }
.shadow-\[0_0_30px_rgba\(217\,119\,6\,0\.2\)\] { box-shadow: 0 0 30px rgba(217,119,6,0.2); }
.shadow-\[0_0_30px_-15px_rgba\(217\,119\,6\,0\.15\)\] { box-shadow: 0 0 30px -15px rgba(217,119,6,0.15); }
.shadow-\[0_0_50px_rgba\(0\,0\,0\,0\.5\)\] { box-shadow: 0 0 50px rgba(0,0,0,0.5); }

/* Hover variants */
.hover\:bg-amber-500:hover { background-color: #f59e0b; }
.hover\:bg-zinc-700:hover { background-color: #3f3f46; }
.hover\:bg-zinc-800\/50:hover { background-color: rgba(39,39,42,0.5); }
.hover\:bg-zinc-900\/60:hover { background-color: rgba(24,24,27,0.6); }
.hover\:border-amber-500\/50:hover { border-color: rgba(245,158,11,0.5); }
.hover\:border-zinc-600:hover { border-color: #52525b; }
.hover\:border-zinc-700:hover { border-color: #3f3f46; }
.hover\:text-amber-400:hover { color: #fbbf24; }
.hover\:text-amber-500:hover { color: #f59e0b; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-zinc-100:hover { color: #f4f4f5; }
.hover\:text-zinc-400:hover { color: #a1a1aa; }
.hover\:shadow-\[0_0_25px_rgba\(217\,119\,6\,0\.4\)\]:hover { box-shadow: 0 0 25px rgba(217,119,6,0.4); }
.hover\:shadow-\[0_0_25px_rgba\(217\,119\,6\,0\.5\)\]:hover { box-shadow: 0 0 25px rgba(217,119,6,0.5); }
.hover\:shadow-\[0_0_40px_-10px_rgba\(217\,119\,6\,0\.25\)\]:hover { box-shadow: 0 0 40px -10px rgba(217,119,6,0.25); }

/* Focus / placeholder / disabled */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-amber-500:focus { border-color: #f59e0b; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px var(--tw-ring-color, #f59e0b); }
.focus\:ring-amber-500:focus { --tw-ring-color: #f59e0b; }
.placeholder\:text-zinc-600::placeholder { color: #52525b; }
.disabled\:bg-zinc-800:disabled { background-color: #27272a; }
.disabled\:text-zinc-500:disabled { color: #71717a; }

/* Group-hover / group-focus-within variants */
.group:hover .group-hover\:-translate-y-1 { transform: translateY(-0.25rem); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:w-3 { width: 0.75rem; }
.group:hover .group-hover\:bg-amber-500 { background-color: #f59e0b; }
.group:hover .group-hover\:bg-amber-500\/10 { background-color: rgba(245,158,11,0.1); }
.group:hover .group-hover\:bg-emerald-500\/10 { background-color: rgba(16,185,129,0.1); }
.group:hover .group-hover\:bg-sky-500\/10 { background-color: rgba(14,165,233,0.1); }
.group:hover .group-hover\:bg-transparent { background-color: transparent; }
.group:hover .group-hover\:border-amber-500\/50 { border-color: rgba(245,158,11,0.5); }
.group:hover .group-hover\:border-zinc-700 { border-color: #3f3f46; }
.group:hover .group-hover\:text-amber-500 { color: #f59e0b; }
.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:text-zinc-100 { color: #f4f4f5; }
.group:hover .group-hover\:text-zinc-800\/50 { color: rgba(39,39,42,0.5); }
.group:hover .group-hover\:shadow-\[0_0_15px_rgba\(255\,255\,255\,0\.05\)\] { box-shadow: 0 0 15px rgba(255,255,255,0.05); }
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(217\,119\,6\,0\.2\)\] { box-shadow: 0 0 20px rgba(217,119,6,0.2); }
.group:focus-within .group-focus-within\:text-amber-500 { color: #f59e0b; }

/* ============================================================
   Responsive utilities — mobile-first (Tailwind min-width semantics)
   ============================================================ */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-14 { padding: 3.5rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:w-auto { width: auto; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .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-2 { grid-column: span 2 / span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:items-center { align-items: center; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:justify-center { justify-content: center; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-2\/5 { width: 40%; }
  .md\:w-3\/5 { width: 60%; }
  .md\:w-64 { width: 16rem; }
  .md\:w-auto { width: auto; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:my-32 { margin-top: 8rem; margin-bottom: 8rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:mb-16 { margin-bottom: 4rem; }
  .md\:mb-24 { margin-bottom: 6rem; }
  .md\:mb-32 { margin-bottom: 8rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-20 { margin-top: 5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-14 { padding: 3.5rem; }
  .md\:px-0 { padding-left: 0; padding-right: 0; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-left { text-align: left; }
  .md\:border-l { border-left-width: 1px; }
  .md\:aspect-\[21\/8\] { aspect-ratio: 21 / 8; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-\[5rem\] { font-size: 5rem; line-height: 1; }
}
