.nwa-woven-hero,
.nwa-woven-hero * {
  box-sizing: border-box;
}

.nwa-woven-hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020203;
  color: #fff;
  isolation: isolate;
  border-radius: 0;
}

.nwa-woven-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
}

.nwa-woven-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.nwa-woven-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.02) 28%, rgba(0,0,0,0.66) 74%, rgba(0,0,0,0.94) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.72));
}

.nwa-woven-nav {
  position: absolute;
  z-index: 4;
  top: 28px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

.nwa-woven-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 48px rgba(255,255,255,0.06);
}

.nwa-woven-logo {
  font-size: 14px;
  font-weight: 600;
  opacity: .92;
}

.nwa-woven-content {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 90px;
  text-align: center;
}

.nwa-woven-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.74);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  opacity: 0;
  transform: translateY(16px);
  animation: nwaWovenFadeUp .9s cubic-bezier(.2,.75,.25,1) .7s forwards;
}

.nwa-woven-title {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 138px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-wrap: balance;
  text-shadow: 0 0 48px rgba(255,255,255,0.22), 0 16px 80px rgba(0,0,0,0.92);
}

.nwa-woven-title .nwa-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(52px);
  filter: blur(6px);
  animation: nwaCharIn 1.1s cubic-bezier(.2,.75,.25,1) forwards;
}

.nwa-woven-title .nwa-word {
  display: inline-block;
  white-space: nowrap;
}

.nwa-woven-description {
  width: min(760px, 100%);
  margin: 26px auto 0;
  color: rgba(255,255,255,0.72);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  animation: nwaWovenFadeUp 1s cubic-bezier(.2,.75,.25,1) 1.35s forwards;
}

.nwa-woven-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: nwaWovenFadeUp .9s cubic-bezier(.2,.75,.25,1) 1.8s forwards;
}

.nwa-woven-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border-radius: 999px;
  text-decoration: none !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(18px);
}

.nwa-woven-button:hover {
  transform: translateY(-2px);
}

.nwa-woven-button-primary {
  color: #090909 !important;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 20px 70px rgba(255,255,255,0.15), inset 0 1px 0 rgba(255,255,255,0.75);
}

.nwa-woven-button-primary:hover {
  color: #000 !important;
  background: #fff;
  box-shadow: 0 26px 86px rgba(255,255,255,0.22);
}

.nwa-woven-button-secondary {
  color: rgba(255,255,255,0.88) !important;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}

.nwa-woven-button-secondary:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.26);
}

@keyframes nwaCharIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes nwaWovenFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .nwa-woven-hero {
    min-height: 760px;
  }
  .nwa-woven-nav {
    top: 18px;
    left: 18px;
  }
  .nwa-woven-content {
    width: min(100% - 28px, 680px);
    padding: 110px 0 70px;
  }
  .nwa-woven-title {
    font-size: clamp(46px, 15vw, 72px);
    line-height: .94;
    letter-spacing: -0.06em;
  }
  .nwa-woven-description {
    font-size: 15px;
    margin-top: 20px;
  }
  .nwa-woven-button {
    width: 100%;
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nwa-woven-title .nwa-char,
  .nwa-woven-description,
  .nwa-woven-eyebrow,
  .nwa-woven-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
