/* ── Root Variables ────────────────────────────────────────────── */
:root {
  --green: #03A7A5;
  --brand-gradient: linear-gradient(180deg, #03A7A5 0%, #00C077 100%);
  --black: #000000;
  --dark: #191a23;
  --gray: #f3f3f3;
  --white: #ffffff;
}

/* ── Base ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}
p { font-family: 'Inter', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

/* ── Utilities ─────────────────────────────────────────────────── */
.text-green { color: var(--green); }
.bg-dark { background-color: var(--dark); }
.bg-brand-gradient { background-image: var(--brand-gradient); }
.scroll-smooth { scroll-behavior: smooth; }

/* ── Container ────────────────────────────────────────────────── */
.max-w-\[1280px\] { max-width: 1280px; }
.max-w-\[800px\]  { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* ── Flex / Grid ──────────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.grid { display: grid; }

/* ── Spacing ──────────────────────────────────────────────────── */
.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-3  { padding-top: .75rem; padding-bottom: .75rem; }
.py-4  { padding-top: 1rem; padding-bottom: 1rem; }
.py-5  { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.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-32 { padding-top: 8rem; padding-bottom: 8rem; }
.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; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.pt-6  { padding-top: 1.5rem; }
.pt-8  { padding-top: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-16 > * + * { margin-top: 4rem; }

/* ── Typography ────────────────────────────────────────────────── */
.text-xs   { font-size: .75rem; }
.text-sm   { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-6xl  { font-size: 3.75rem; }
.font-medium  { font-weight: 500; }
.font-bold    { font-weight: 700; }
.font-black   { font-weight: 900; }
.tracking-tight  { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider  { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-none   { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.leading-snug   { line-height: 1.375; }
.uppercase { text-transform: uppercase; }
.italic    { font-style: italic; }
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-black  { color: var(--black); }
.text-zinc-400 { color: #a1a1aa; }
.text-zinc-500 { color: #71717a; }
.text-zinc-600 { color: #52525b; }
.text-zinc-700 { color: #3f3f46; }
.text-zinc-900 { color: #18181b; }
.text-transparent { color: transparent; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* ── Background ────────────────────────────────────────────────── */
.bg-white  { background-color: #fff; }
.bg-zinc-50  { background-color: #fafafa; }
.bg-zinc-100 { background-color: #f4f4f5; }
.bg-zinc-200 { background-color: #e4e4e7; }
.bg-zinc-900 { background-color: #18181b; }
.bg-\[#03A7A5\] { background-color: var(--green); }
.bg-dark    { background-color: var(--dark); }

/* ── Borders ───────────────────────────────────────────────────── */
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-white { border-color: #fff; }
.border-white\/5   { border-color: rgba(255,255,255,.05); }
.border-white\/10  { border-color: rgba(255,255,255,.1); }
.border-zinc-50  { border-color: #fafafa; }
.border-zinc-100 { border-color: #f4f4f5; }
.border-zinc-200 { border-color: #e4e4e7; }
.border-zinc-800 { border-color: #27272a; }
.border-\[#03A7A5\]\/10 { border-color: rgba(3,167,165,.1); }
.border-\[#03A7A5\]\/25 { border-color: rgba(3,167,165,.25); }
.border-green\/30 { border-color: rgba(3,167,165,.3); }
.rounded-xl    { border-radius: .75rem; }
.rounded-2xl   { border-radius: 1rem; }
.rounded-\[24px\] { border-radius: 24px; }
.rounded-\[30px\] { border-radius: 30px; }
.rounded-\[40px\] { border-radius: 40px; }
.rounded-\[45px\] { border-radius: 45px; }
.rounded-\[60px\] { border-radius: 60px; }
.rounded-full  { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }

/* ── Shadows ───────────────────────────────────────────────────── */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 1px 4px rgba(0,0,0,.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}

/* ── Transitions ───────────────────────────────────────────────── */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(.4,0,.2,1); transition-duration: .3s; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(.4,0,.2,1); transition-duration: .3s; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(.4,0,.2,1); transition-duration: .3s; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.duration-700 { transition-duration: .7s; }
.group-hover\:scale-105:hover { transform: scale(1.05); }

/* ── Animations ────────────────────────────────────────────────── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}

/* ── Navbar ────────────────────────────────────────────────────── */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0  { top: 0; }
.top-4  { top: 1rem; }
.top-10 { top: 2.5rem; }
.top-full { top: 100%; }
.right-0 { right: 0; }
.right-10 { right: 2.5rem; }
.bottom-1 { bottom: .25rem; }
.bottom-6 { bottom: 1.5rem; }
.-right-6  { right: -1.5rem; }
.-right-40 { right: -10rem; }
.-top-40   { top: -10rem; }
.-translate-x-\[35\%\] { transform: translateX(-35%); }
.translate-y-4 { transform: translateY(1rem); }
.-translate-y-2 { transform: translateY(-.5rem); }
.group-hover\/nav\:-rotate-180 { transform: rotate(-180deg); }
.z-0   { z-index: 0; }
.z-10  { z-index: 10; }
.z-50  { z-index: 50; }
.group\/nav:hover .group-hover\/nav\:opacity-100 { opacity: 1; }
.group\/nav:hover .group-hover\/nav\:translate-y-0 { transform: translateY(0); }
.group\/nav:hover .group-hover\/nav\:pointer-events-auto { pointer-events: auto; }
.opacity-0 { opacity: 0; }
.opacity-5  { opacity: .05; }
.opacity-10 { opacity: .1; }
.opacity-30 { opacity: .3; }
.opacity-50 { opacity: .5; }
.opacity-70 { opacity: .7; }
.hover\:opacity-100:hover { opacity: 1; }
.blur-3xl { filter: blur(64px); }
.shrink-0 { flex-shrink: 0; }
.flex-shrink-0 { flex-shrink: 0; }
.whitespace-nowrap { white-space: nowrap; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[4\/5\] { aspect-ratio: 4/5; }
.cursor-pointer { cursor: pointer; }
.hidden { display: none; }
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8f8f8; }
::-webkit-scrollbar-thumb { background: var(--dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ── Elementor Compatibility ───────────────────────────────────── */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1280px;
}
.nm-section {
  padding: 5rem 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── GSAP / lenis / overrides ──────────────────────────────────── */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ── Responsive helpers ────────────────────────────────────────── */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 768px) {
  .md\:col-span-2 { grid-column: span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:p-20 { padding: 5rem; }
  .md\:text-left { text-align: left; }
  .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\:h-10 { height: 2.5rem; }
  .md\:h-14 { height: 3.5rem; }
  .md\:h-24 { height: 6rem; }
  .md\:top-6 { top: 1.5rem; }
  .md\:px-8  { padding-left: 2rem; padding-right: 2rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:gap-24 { gap: 6rem; }
  .md\:rounded-\[30px\] { border-radius: 30px; }
  .md\:rounded-\[60px\] { border-radius: 60px; }
}
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:sticky { position: sticky; }
  .lg\:top-32 { top: 8rem; }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:col-span-3 { grid-column: span 3; }
  .lg\:col-span-4 { grid-column: span 4; }
  .lg\:col-span-5 { grid-column: span 5; }
  .lg\:col-span-7 { grid-column: span 7; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:p-0 { padding: 0; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:mt-0 { margin-top: 0; }
  .lg\:border-0 { border-width: 0; }
  .lg\:space-x-10 > * + * { margin-left: 2.5rem; }
  .lg\:justify-start { justify-content: flex-start; }
  .lg\:w-auto { width: auto; }
  .lg\:-right-12 { right: -3rem; }
  .text-lg { font-size: 1.125rem; }
  .text-\[110px\] { font-size: 110px; }
}
