@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Instrument+Serif:ital@1&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111111;
}
#root { min-height: 100vh; }

/* ---------- HERO (dark) ---------- */
.nc-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  overflow: hidden;
  color: #f3efe6;
}

.nc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}

.nc-hero__nav {
  position: relative;
  z-index: 30;
  height: 90px;
}

.nc-hero .sm-logo-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.6);
  border-radius: 8px;
}

.nc-hero__content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  min-height: calc(100vh - 90px);
}

.nc-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.nc-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #feba22;
}

.nc-hero__headline {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3efe6;
}

.nc-hero__headline em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #feba22;
  display: inline-block;
  margin-top: 0.1em;
}

.nc-hero__subtext {
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b9b6ad;
}

.nc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.nc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  font-size: 0.85rem;
  color: #8a887f;
}

.nc-hero__trust li { display: flex; align-items: center; gap: 0.4rem; }
.nc-hero__trust li::before { content: '✓'; color: #feba22; }

.nc-hero__preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(243, 239, 230, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  aspect-ratio: 4 / 3;
}

.nc-hero__preview-video { width: 100%; height: 100%; object-fit: cover; display: block; }

.nc-hero__preview-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  background: #feba22;
  border-radius: 999px;
}

.nc-hero__strip {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.nc-hero__strip-card {
  height: 220px !important;
  width: 100% !important;
  aspect-ratio: auto !important;
  border-radius: 16px !important;
}

.nc-hero__strip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .nc-hero__content { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .nc-hero__preview { order: -1; aspect-ratio: 16 / 10; }
  .nc-hero__strip { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .nc-hero__bg { display: none; }
}

/* ---------- REST OF SITE (white) ---------- */
.nc-section {
  background: #ffffff;
  color: #111111;
  padding: 6rem 2rem;
}

.nc-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.nc-placeholder {
  border: 1px dashed #d8d5cc;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: #8a887f;
  font-size: 0.95rem;
}
