/* Minimal CSS reset + utility classes mirroring the Tailwind classes used in the Next.js site.
   This is hand-written (no Tailwind build step) so the page is fully static. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #ededed;
  background: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

/* Container */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px)  { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  width: 100%;
  background: #ffffff;
  color: #000;
  border-bottom: 1px solid #e4e4e7;
  backdrop-filter: blur(8px);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 10rem;
}
@media (min-width: 768px) { .header-row { height: 12rem; } }
.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 8rem; width: auto; }
@media (min-width: 768px) { .logo-img { height: 10rem; } }

.nav-desktop { display: none; gap: 2.5rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link {
  font-size: 1rem; font-weight: 600; letter-spacing: 0.025em; color: #000;
  transition: color .15s ease;
}
.nav-link:hover { color: #52525b; }

.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 2.5rem; width: 2.5rem; border-radius: .375rem;
  background: transparent; border: none; color: #000;
}
@media (min-width: 768px) { .menu-btn { display: none; } }
.menu-btn svg { width: 1.5rem; height: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.mobile-menu {
  border-top: 1px solid #e4e4e7;
  background: #fff;
  display: none;
}
.mobile-menu.is-open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu .container { display: flex; flex-direction: column; gap: .25rem; padding-top: .75rem; padding-bottom: .75rem; }
.mobile-link {
  border-radius: .375rem; padding: .5rem .75rem;
  font-size: 1rem; font-weight: 600; color: #000;
}
.mobile-link:hover { background: #f4f4f5; }

/* Sections */
.section { padding-top: 5rem; padding-bottom: 5rem; }
.section-hero { padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 640px) { .section-hero { padding-top: 8rem; padding-bottom: 8rem; } }
.bg-zinc-50  { background: #000000; color: #ededed; }
.bg-zinc-950 { background: #000000; color: #ededed; }
.border-b    { border-bottom: 1px solid #27272a; }
.border-t    { border-top: 1px solid #27272a; }

/* Typography */
.eyebrow {
  font-size: .875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: #a1a1aa;
}
.h1 { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.025em; margin: 1rem 0 0; line-height: 1.1; }
@media (min-width: 640px) { .h1 { font-size: 3.75rem; } }
.h1-sm { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.025em; margin: 1rem 0 0; line-height: 1.1; }
@media (min-width: 640px) { .h1-sm { font-size: 3rem; } }
.h2 { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.025em; margin: 0; }
.h3 { font-size: 1.125rem; font-weight: 600; margin: 0; }
.lead { margin-top: 1.5rem; font-size: 1.125rem; color: #a1a1aa; max-width: 48rem; }
.text-zinc { color: #a1a1aa; }
.text-muted-sm { font-size: .875rem; color: #a1a1aa; margin-top: .75rem; }

.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl  { max-width: 36rem; }

/* Hero CTA buttons */
.btn-row { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-block; border-radius: 9999px;
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 500;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: #ffffff; color: #000; }
.btn-primary:hover { background: #e4e4e7; }
.btn-secondary { border: 1px solid #3f3f46; color: #ededed; }
.btn-secondary:hover { background: #18181b; }
.btn-light { background: #fff; color: #000; }
.btn-light:hover { background: #e4e4e7; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-2 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 2rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.mt-12 { margin-top: 3rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-3  { margin-top: .75rem; }
.mt-2  { margin-top: .5rem; }

/* Cards */
.card {
  border-radius: 1rem; border: 1px solid #27272a;
  background: #0a0a0a; color: #ededed; padding: 1.5rem;
  transition: border-color .15s ease;
}
.card:hover { border-color: #3f3f46; }
.card-lg { padding: 2rem; }
.card .h3 { font-size: 1.125rem; }
.card-list { margin-top: .75rem; padding-left: 1.25rem; list-style: disc; color: #a1a1aa; }
.card-list li + li { margin-top: .25rem; }
.card p { margin: .75rem 0 0; color: #a1a1aa; font-size: .875rem; }

/* CTA banner */
.cta-banner { margin-top: 6rem; background: #18181b; color: #fff; padding: 4rem 0; border-top: 1px solid #27272a; }
.cta-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
}
@media (min-width: 768px) {
  .cta-row { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-row .h2 { color: #fff; font-size: 1.5rem; }
@media (min-width: 640px) { .cta-row .h2 { font-size: 1.875rem; } }
.cta-row .lead { color: #d4d4d8; margin-top: .75rem; font-size: 1rem; }

/* About values + contact dl */
.about-copy { margin-top: 1rem; max-width: 48rem; color: #e4e4e7; font-size: 1.125rem; line-height: 1.7; }
.about-copy p + p { margin-top: 1.5rem; }

.contact-dl { margin-top: 2rem; display: grid; gap: 2rem; }
@media (min-width: 640px) { .contact-dl { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 768px) { .contact-dl { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.contact-dl dt { font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: #a1a1aa; font-size: .875rem; }
.contact-dl dd { margin: .5rem 0 0; font-size: 1rem; }
.contact-dl a:hover { text-decoration: underline; }
.whitespace-nowrap { white-space: nowrap; }

/* Footer */
.footer { margin-top: 6rem; border-top: 1px solid #27272a; background: #000000; color: #ededed; padding: 3rem 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.footer-brand { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; color: #ffffff; }
.footer-title { font-size: .875rem; font-weight: 600; color: #ededed; }
.footer-list { margin-top: .75rem; font-size: .875rem; color: #a1a1aa; }
.footer-list li + li { margin-top: .5rem; }
.footer-list a:hover { color: #ffffff; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #27272a;
  display: flex; flex-direction: column; align-items: flex-start;
  font-size: .75rem; color: #a1a1aa; gap: .5rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* Carousel */
.carousel {
  position: relative; overflow: hidden; border-radius: 1rem; background: #fff;
}
.carousel-stage { position: relative; aspect-ratio: 16/9; }
.carousel-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .5s ease;
}
.carousel-slide.is-active { opacity: 1; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  height: 2.75rem; width: 2.75rem; border-radius: 9999px;
  background: rgba(255,255,255,.9); color: #000;
  box-shadow: 0 4px 10px rgba(0,0,0,.12); border: none;
  transition: background-color .15s ease;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn.prev { left: .75rem; }
.carousel-btn.next { right: .75rem; }
.carousel-btn svg { width: 1.25rem; height: 1.25rem; }
.carousel-dots {
  position: absolute; bottom: .75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem;
}
.carousel-dot {
  height: .5rem; width: .5rem; border-radius: 9999px;
  background: rgba(255,255,255,.5); border: none;
  transition: background-color .15s ease;
}
.carousel-dot:hover { background: rgba(255,255,255,.8); }
.carousel-dot.is-active { background: #fff; }
.pb-20 { padding-bottom: 5rem; }
