.hero {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  background: var(--off-white);
  position: absolute;
  inset: 0;
}
#ideas-3d-canvas {
  z-index: 5;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-blur {
  filter: blur(80px);
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}
.hero-blur-1 {
  display: none;
}
.hero-content-wrapper {
  z-index: 20;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 120px 0 60px;
  display: flex;
  position: relative;
}
.hero-eyebrow {
  display: none;
}
.hero-title {
  font-family: var(--sans-font), sans-serif;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  word-break: keep-all;
  -webkit-hyphens: none;
  hyphens: none;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
}
.hero-description,
.hero-fade {
  display: none;
}
.ideas-gallery {
  background: var(--off-white);
  padding: 80px 0;
}
.gallery-filters {
  border-bottom: 1px solid #1a1a1a;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 80px;
  padding-bottom: 30px;
  display: flex;
}
.filter-btn {
  font-family: var(--sans-font);
  letter-spacing: 0.15em;
  color: #1a1a1a;
  text-transform: uppercase;
  cursor: pointer;
  background: 0 0;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 800;
  transition: all 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: #1a1a1a;
}
.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
  display: grid;
}
.gallery-item {
  box-shadow: none;
  background: 0 0;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  flex-direction: column;
  transition: all 0.4s;
  display: flex;
  overflow: hidden;
}
.gallery-item:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
}
.gallery-image {
  aspect-ratio: 16/10;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}
.gallery-image img,
.gallery-image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.gallery-category {
  color: #fff;
  font-family: var(--sans-font);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #1a1a1a;
  border-radius: 0;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 800;
  position: absolute;
  top: 16px;
  left: 16px;
}
.gallery-content {
  flex-grow: 1;
  align-items: center;
  padding: 30px 24px;
  display: flex;
}
.gallery-content h3 {
  font-family: var(--sans-font);
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  transition: color 0.4s;
}
.gallery-item:hover .gallery-content h3 {
  color: #fff;
}
.gallery-content p {
  display: none;
}
.gallery-cta {
  text-align: left;
  background: 0 0;
  border-top: 1px solid #1a1a1a;
  border-radius: 0;
  padding: 120px 0;
}
.gallery-cta h3 {
  font-family: var(--sans-font);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  word-break: break-word;
  margin: 0 0 40px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
}
.gallery-cta p {
  display: none;
}
.cta-button {
  color: #fff;
  font-family: var(--sans-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #1a1a1a;
  border-radius: 0;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.4s;
  display: inline-flex;
}
.cta-button:hover {
  transform: translate(10px);
}
